English 中文(简体)
选择区域掩盖开放式采用选择性搜索算法
原标题:Getting region masks from opencv implementation of selective search algorithm

我正试图提出区域建议,以培训分部分模式。 我看到了开放式中心的实施:

cv2.ximgproc.segmentation.createSelectiveSearchSegmentation()

并且这一执行正在将区域提案作为约束箱退回。 但是,根据我对这一算法的理解,它把Felzenszwalb的图表部分用作原始种子,并使用颜色、大小、文字和插图;对集团区域形成类似的指标。

是否有办法获得在开放CV对Felzenszwalb aglorithm的输出进行选择性搜索后产生的隔膜?

问题回答

如果你想对选择性搜索的碎片面罩产出进行视像,我就增加了开放式录像机(没有承诺使用原始背波)文档和安放机的功能;现在,与盒子一样,你还把隔膜作为产出。

In the code, images is a private variable but the masks are stored as points in OpenCV. Therefore in order to retrieve the image masks, I made a few updates in the items being returned in the code.

Here is the code for reference : https://www.kaggle.com/code/vedantj/selective-search/notebook





相关问题
Resources for Image Recognition

I am looking for a recommendation for an introduction to image processing algorithms (face and shape recognition, etc.) and wondered if anyone had an good recommendations, either for books, ...

Good reference book for digital image processing? [closed]

I am learning digital image processing on my own and would like recomendations on good reference books. If you know of books to definately stay away from that would be useful as well. Thanks

Python Tesseract can t recognize this font

I have this image: I want to read it to a string using python, which I didn t think would be that hard. I came upon tesseract, and then a wrapper for python scripts using tesseract. So I started ...

What s the quickest way to parallelize code?

I have an image processing routine that I believe could be made very parallel very quickly. Each pixel needs to have roughly 2k operations done on it in a way that doesn t depend on the operations ...

Computing object statistics from the second central moments

I m currently working on writing a version of the MATLAB RegionProps function for GNU Octave. I have most of it implemented, but I m still struggling with the implementation of a few parts. I had ...

Viola-Jones face detection claims 180k features

I ve been implementing an adaptation of Viola-Jones face detection algorithm. The technique relies upon placing a subframe of 24x24 pixels within an image, and subsequently placing rectangular ...

热门标签