Get multiple borders of black/white image. #1231
-
Hi, I am new to ImageSharp, I was using Accord.NET, Aforge but these libraries became outdated. I am searching for a method to get multiple borders of a Bitmap that contains white shapes. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I'm afraid no methods like this exist. ImageSharp isn't a computer vision library (although we've thrown in a few useful methods). Rather it provides the tools to build a computer vision library upon. In theory, porting methods to ImageSharp should be fairly trivial as we provide simplified per-pixel access and remove some of the complexity regarding dealing with pixels formats. I would have a look at the source of what you need and have a go at implementing a port. If you have any questions regarding our API please let us know. |
Beta Was this translation helpful? Give feedback.
I'm afraid no methods like this exist.
ImageSharp isn't a computer vision library (although we've thrown in a few useful methods). Rather it provides the tools to build a computer vision library upon.
In theory, porting methods to ImageSharp should be fairly trivial as we provide simplified per-pixel access and remove some of the complexity regarding dealing with pixels formats. I would have a look at the source of what you need and have a go at implementing a port. If you have any questions regarding our API please let us know.