Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
请教,色块识别中,pixels_threshold=1000这个值可不可以有限大于某个值的色块不识别的方法
你可以在find_blobs()之后过滤一下。 类似这样
blobs = img.find_blobs(xxxx) small_blobs = [] for b in blobs: if b.pixels() < 1000: small_blobs.append(b)