# maskrcnn-opencv-python **Repository Path**: lincent/maskrcnn-opencv-python ## Basic Information - **Project Name**: maskrcnn-opencv-python - **Description**: No description available - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-03 - **Last Updated**: 2026-07-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README **Python** `wget http://download.tensorflow.org/models/object_detection/mask_rcnn_inception_v2_coco_2018_01_28.tar.gz` `tar zxvf mask_rcnn_inception_v2_coco_2018_01_28.tar.gz` Download and extract the needed model files. **Usage Examples :** **Python** `python3 mask_rcnn.py --image=cars.jpg` `python3 mask_rcnn.py --video=cars.mp4` It starts the webcam - if no argument provided. **C++** Compile using: ```g++ -ggdb `pkg-config --cflags --libs /Users/snayak/opencv/build/unix-install/opencv.pc` mask_rcnn.cpp -o mask_rcnn.out``` Run using: `./mask_rcnn.out --image=cars.jpg` `./mask_rcnn.out --video=cars.mp4`