Andre
Andre

Reputation:

I want an algorithm to crop an image, where to start

I want to a content analysis of a jepg image. I wish to take a jpeg image say 251 x 261 and pass it through an algorithm to crop it to say 96 x 87. Like an intelligent cropping algorithm, with a prompt to resize the image.

Upvotes: 2

Views: 672

Answers (2)

chaos
chaos

Reputation: 124335

Cropping and resizing are entirely different operations, and your question makes it sound like you don't know which you want.

I can't really tell where you're at with your process, but possibly you may benefit from obtaining and using ImageMagick.

Upvotes: 4

ChaosPandion
ChaosPandion

Reputation: 78282

If you are using .NET try using this.

System.Drawing.Image.GetThumbnailImage

Upvotes: 0

Related Questions