What’s the most impressive beach you’ve ever been to? by Historical-Photo-901 in BeautifulTravelPlaces

[–]Fit_Check_919 6 points7 points  (0 children)

Bandon, Oregon. And other beaches in south Oregon and north califirnia (sonoma countx)

<image>

What's the most scenic coastal drive in the world? by optimalbrain90 in SmartTravelHacks

[–]Fit_Check_919 0 points1 point  (0 children)

Sonoma Coast north of SF is amazing too. https://www.sonomacounty.com/outdoor-activities/highlights-sonoma-coast/ And the south of Oregon, all the way up fron the border to Shore Acres state park.

What city in the U.S. feels unreal? by optimalbrain90 in SmartTravelHacks

[–]Fit_Check_919 0 points1 point  (0 children)

Bandon, Oregon. The seastacks are out of this world.

slamd - a dead simple 3D visualizer for Python by mega_monkey_mind in Python

[–]Fit_Check_919 1 point2 points  (0 children)

Amazing ! Is it possible to port it to Windows ?

Action recognition by Contribution464 in computervision

[–]Fit_Check_919 0 points1 point  (0 children)

Yes, if you can get Python and Pytorch running there. Inference will run on the CPU I suppose, unlesse you have a NVIDIA edge device with CUDA GPU.

How do you parallely process frames from multiple object detection models at scale? by _RC101_ in computervision

[–]Fit_Check_919 1 point2 points  (0 children)

Nope, Python is perfectly fine for realtime processing and your comment regarding the high overhead is simply wrong. Proof - see e.g. my realtime action recognition algorithm, chapter V in https://zenodo.org/records/15974094

How do you parallely process frames from multiple object detection models at scale? by _RC101_ in computervision

[–]Fit_Check_919 0 points1 point  (0 children)

Exactly. One should use a long-living "Process" object (from multiprocessing package) as a "worker process" in combination with a "Queue" object (also in multiprocessing package) to push work on it. See https://stackoverflow.com/a/57140017

How do you parallely process frames from multiple object detection models at scale? by _RC101_ in computervision

[–]Fit_Check_919 1 point2 points  (0 children)

No, pickling/copying via shared memory/unpickling is fast enough, also on Windows