How to make more aggressive profile? #181
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Try enabling the inpainter, it's off by default. Also, the text detector has frequent false positives in the raw mask where it thinks random patterns here and there are text, so it does a verification step with the raw box data it generates (the output right after this). Parts of the raw mask that don't fall within boxes where text was actually detected, are deemed to be false positives and thus discarded. So check what actually gets marked by the original boxes output and you'll see what's possible. Disabling this verification does a lot more harm than good (and thus not changeable without modifying the source code), so hopefully with inpainting you'll get the results you want, otherwise that's simply as good as this AI model can get, it isn't perfect. |
Beta Was this translation helpful? Give feedback.



Try enabling the inpainter, it's off by default.
Also, the text detector has frequent false positives in the raw mask where it thinks random patterns here and there are text, so it does a verification step with the raw box data it generates (the output right after this). Parts of the raw mask that don't fall within boxes where text was actually detected, are deemed to be false positives and thus discarded. So check what actually gets marked by the original boxes output and you'll see what's possible. Disabling this verification does a lot more harm than good (and thus not changeable without modifying the source code), so hopefully with inpainting you'll get the results you want, otherwise…