<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: max ray</title>
    <description>The latest articles on Forem by max ray (@maxray).</description>
    <link>https://forem.com/maxray</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3813964%2F25bb3e59-6c36-42c3-8853-a9af43319af9.png</url>
      <title>Forem: max ray</title>
      <link>https://forem.com/maxray</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/maxray"/>
    <language>en</language>
    <item>
      <title>How I Built a Simple AI Tool to Remove Objects from Images (No Photoshop Needed)</title>
      <dc:creator>max ray</dc:creator>
      <pubDate>Wed, 22 Apr 2026 07:38:02 +0000</pubDate>
      <link>https://forem.com/maxray/how-i-built-a-simple-ai-tool-to-remove-objects-from-images-no-photoshop-needed-2g0c</link>
      <guid>https://forem.com/maxray/how-i-built-a-simple-ai-tool-to-remove-objects-from-images-no-photoshop-needed-2g0c</guid>
      <description>&lt;p&gt;A few months ago, I kept running into the same annoying problem:&lt;/p&gt;

&lt;p&gt;I needed clean images — for blog posts, landing pages, thumbnails — but almost every time there was something in the way:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;random text overlays&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;unwanted people in the background&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;messy objects ruining the composition&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And every solution felt… overkill.&lt;/p&gt;

&lt;p&gt;Photoshop? Too heavy.&lt;br&gt;
Mobile apps? Limited or low quality.&lt;br&gt;
Most AI tools? Either slow, expensive, or confusing.&lt;/p&gt;

&lt;p&gt;So I decided to build something simpler&lt;/p&gt;

&lt;h2&gt;
  
  
  The Idea
&lt;/h2&gt;

&lt;p&gt;What if removing objects from an image was as easy as:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Upload&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Brush over the unwanted area&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Get a clean result in seconds&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No layers. No masks. No learning curve.&lt;/p&gt;

&lt;p&gt;That’s how CleanupPictures.org started&lt;/p&gt;

&lt;h2&gt;
  
  
  How It Works (High Level)
&lt;/h2&gt;

&lt;p&gt;I wanted to keep the UX dead simple, but under the hood it's doing a few interesting things:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Image segmentation to detect selected regions&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;AI inpainting to reconstruct the missing area&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Fast processing so users don’t wait forever&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The biggest challenge wasn’t just “making it work” —&lt;br&gt;
it was making it feel instant and reliable&lt;/p&gt;

&lt;h2&gt;
  
  
  Real Use Cases
&lt;/h2&gt;

&lt;p&gt;Here are a few real scenarios where this turned out to be surprisingly useful:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Cleaning up product photos&lt;br&gt;
Remove distracting objects → cleaner listings → better conversion&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Fixing blog images&lt;br&gt;
Get rid of watermarks or unwanted elements quickly&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Social media content&lt;br&gt;
Remove background clutter to make visuals pop&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Quick design hacks&lt;br&gt;
No need to open complex tools for small edits&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Why Not Just Use Photoshop?
&lt;/h2&gt;

&lt;p&gt;Honestly, you still should — if you’re doing advanced work.&lt;/p&gt;

&lt;p&gt;But for 80% of everyday cases, people just want:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;fast&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;simple&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;good enough&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s the gap I focused on&lt;/p&gt;

&lt;h2&gt;
  
  
  Challenges I Ran Into
&lt;/h2&gt;

&lt;p&gt;A few things were harder than expected:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Handling different image sizes and quality&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Making results look natural (not “AI-smudged”)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Keeping performance fast without huge costs&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Still working on improving all of these.&lt;/p&gt;

&lt;h2&gt;
  
  
  Current Status
&lt;/h2&gt;

&lt;p&gt;It’s still early, but:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Core feature is stable&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;People are actually using it (always a good sign)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;I’m collecting feedback and iterating quickly&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Would Love Your Feedback
&lt;/h2&gt;

&lt;p&gt;If you have a minute, I’d really appreciate your thoughts:&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://cleanuppictures.org/" rel="noopener noreferrer"&gt;AI Photo Cleanup Tool&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Does it feel intuitive?&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Is the result quality good enough?&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;What would make this actually useful for your workflow?&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Final Thought
&lt;/h2&gt;

&lt;p&gt;I’ve been building small tools for a while, and one thing keeps proving true:&lt;/p&gt;

&lt;p&gt;Simplicity beats power (for most users)&lt;/p&gt;

&lt;p&gt;Not everyone wants a “pro tool”.&lt;br&gt;
Sometimes they just want something that works — fast.&lt;/p&gt;

&lt;p&gt;Thanks for reading&lt;br&gt;
Happy to answer questions or share more details about the build&lt;/p&gt;

</description>
      <category>ai</category>
      <category>buildinpublic</category>
      <category>webdev</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
