Mask_RCNN icon indicating copy to clipboard operation
Mask_RCNN copied to clipboard

Mask R-CNN for object detection and instance segmentation on Keras and TensorFlow

Results 274 Mask_RCNN issues
Sort by recently updated
recently updated
newest added

model.py and utils.py are updated for the working of TensorFlow 2.13 version

import cv2 import numpy as np import matplotlib.pyplot as plt def detect_and_mark_rectangles(image): # 降噪 denoised_image = cv2.GaussianBlur(image, (5, 5), -10) # 将图像转换为灰度 gray_image = cv2.cvtColor(denoised_image, cv2.COLOR_BGR2GRAY) # 进行二值化处理 _, binary_image...

Hello I’m preparing a dataset for a Mask R-CNN model, involving images of cats and smaller, distinct spots on these cats. While the dataset has more instances of “spots” than...

I’m getting bellow error. Is anyone has any idea about it. usage: custom.py [-h] [--dataset /path/to/custom/dataset/] --weights /path/to/weights.h5 [--logs /path/to/logs/]                  [--image path or URL to image] [--video path or URL...

Hello everyone, First a big thanks for this incredible work!!! I am really impressed by the segmentation part! I am trying to use this implementation of MASK-RCNN on unbalanced dataset....

Hi, I am trying to run the inspect_model.py notebook on a custom dataset, and am running into an AssertionError with block 1b. RPN Predictions. I have seen previous threads related...

@kecyarchana @SebastianNagy @jamajk @babanthierry94 I am having the same problem. Could you please kindly share me the exact older tag version or send the file to me? My email is...

Hello, my dataset is self-made, and its format is similar to VOC, which is in XML format. This issue occurs when running on Mask RCNN. How should I adjust my...