You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sometimes, we only need to detect objects inside 1-2 ROIs in the whole image, but we have to do the conv/pool etc on the whole image, for example, if we use vgg on a HD image, the performance is really bad. my question is, do you have plan to add ROI settings for Conv settings(list of rectangles)?
The text was updated successfully, but these errors were encountered:
You might be interested in something like Faster-RCNN. We have a PR pending review with some features that would allow something this: #4163.
However, if all that you want to do is to cut a RoI at a specific location in your image, you can do it already using the Crop layer. See this SO answer for more information. The drawback is that you specify the crop offset once, but this is done statically and you cannot change it later when your network runs.
sometimes, we only need to detect objects inside 1-2 ROIs in the whole image, but we have to do the conv/pool etc on the whole image, for example, if we use vgg on a HD image, the performance is really bad. my question is, do you have plan to add ROI settings for Conv settings(list of rectangles)?
The text was updated successfully, but these errors were encountered: