5 Open Source Image Editing AI Models

AnandGupta

Expert
Licensed User
Longtime User
Just read about image AIs

I am not into any image work, but know many members are. Can they throw some light in what benefit a layman (in image) like me can do with them ?
Related to B4X development per se.
 

zed

Well-Known Member
Licensed User
Image processing is an extremely complex task; it requires manipulating pixels. Often, you need to check which pixels are adjacent depending on the desired image processing.
Open-source AI image editing models can automatically perform complex transformations (retouching, generation, restoration, intelligent manipulation) that B4X cannot do natively.

B4X is excellent for creating applications, but not for producing or modifying images, even though BitmapCreator is a very good tool.
The models mentioned in the article offer advanced capabilities such as understanding image content, automatic object detection, face recognition, texture recognition, lighting recognition, etc.

B4X is an application development framework. It excels in databases, networking, file management, and business logic.

However, it lacks an advanced image processing engine, intelligent generation or retouching capabilities, or vision or diffusion models. You can resize an image, draw on a canvas, and apply a few simple filters. But there's no intelligent retouching, no generation, and no restoration.

In conclusion, open-source AI image editing models don't replace B4X. They complement B4X.
B4X can create the application, and the AI can intelligently create or modify the images.
It's easy to integrate this kind of functionality into a B4X app.
Simply call an AI model via API, send an image from your app, and retrieve the modified image.
 
Top