我正在使用此代码对伽玛校正的图像进行灰度处理,当我得到足够暗的文本时(我的背景都是白色),如何获得伽玛校正后的图像带来的黑噪声?
伽玛校正代码:
[i.split('-')[0] for i in l]
噪音:
答案 0 :(得分:0)
您只需要使用app.components.ts
值对图像进行二值化处理即可。为此,您可以使用import { StatusBar } from '@ionic-native/status-bar';
initializeApp() {
this.platform.ready().then(() => {
// Okay, so the platform is ready and our plugins are available.
// Here you can do any higher level native things you might need.
this.statusBar.overlaysWebView(true);
this.statusBar.backgroundColorByHexString('#4a148c');
this.splashScreen.hide();
});
方法。在这里threshold
。
使用此代码:
cv2.threshold
输出: