object_detector_app icon indicating copy to clipboard operation
object_detector_app copied to clipboard

Real-Time Object Recognition App with Tensorflow and OpenCV

Results 19 object_detector_app issues
Sort by recently updated
recently updated
newest added

Windows 10 64bit ``` Using Anaconda API: https://api.anaconda.org Fetching package metadata ................. ResolvePackageNotFound: - freetype 2.5.5 2 ```

Hello! I've found a performance issue in /object_detection/eval_util.py: `sess = tf.Session(master, graph=tf.get_default_graph())`[(here)](https://github.com/datitran/object_detector_app/blob/44e8eddeb931cced5d8cf1e283383c720a5706bf/object_detection/eval_util.py#L359) is defined in the function `run_checkpoint_once`[(here)](https://github.com/datitran/object_detector_app/blob/44e8eddeb931cced5d8cf1e283383c720a5706bf/object_detection/eval_util.py#L285) which is repeatedly called in the loop `while True`[(here)](https://github.com/datitran/object_detector_app/blob/44e8eddeb931cced5d8cf1e283383c720a5706bf/object_detection/eval_util.py#L510). `tf.Session` being defined...

Traceback (most recent call last): File "demo.py", line 128, in main(args) File "demo.py", line 97, in main checkpoint = load_checkpoint(args.resume) File "C:\Users\Radhesh Harlalka\Desktop\Scene_text_PRL\aster.pytorch-master\lib\utils\serialization.py", line 66, in load_checkpoint raise ValueError("=> No...

### I am trying to install these packages from Anaconda Navigator CMD Promt still the issue persist. `ResolvePackageNotFound:` ` - vc==14.1=h21ff451_3` ` - openssl==1.1.1=he774522_0` ` - vs2015_runtime==15.5.2=3 ` ![image](https://user-images.githubusercontent.com/63495351/85236769-61ccb880-b43e-11ea-9619-f05bf12dbe5e.png)

When I use your code,I find there is a error First,I modified ['-src', '--source', dest='video_source', type=int,……] to ['-src', '--source', dest='video_source', type=str,……] Then I use this command "python object_detection_multithreading.py -src E:C.mp4",but...

Thanks for your work! I could improve FPS from 3 to 9 (Yolov3). Now, I would like to develop a multi-cam based object detection. Currently, when I try to spawn...

While executing the program on anaconda(spyder) always this error arise, if any one can help error :OpenCV(3.4.6) D:\Build\OpenCV\opencv-3.4.6\modules\imgproc\src\color.cpp:182: error: (-215:Assertion failed) !_src.empty() in function 'cv::cvtColor'

When I run train.py with model faster_rcnn_resnet101 by Python2.7 interpreter on my customized data set, it work well, however when I run the same code in the same context and...

Fixed bug in multithreading version where default args.width & args.height values would be (probably incorrectly) used to scale bounding boxes. Now it uses the frame's actual size. Edited WebcamVideoStream to...