Alright, so let’s talk about this whole “molia fetui” thing. I kinda stumbled into it, honestly.

It all started when I was messing around with some image processing stuff. I was trying to get better at recognizing patterns in images, you know, the usual geeky stuff. I had this idea about isolating specific elements in a photo, like, say, extracting just the sky from a landscape shot. Seemed simple enough, right?
So, I began by throwing a bunch of different photos into a Python script. Nothing fancy, just some basic OpenCV and NumPy stuff. I started with color thresholding – tried to filter out pixels based on their RGB values. That was a bust pretty quickly. The sky isn’t always blue, turns out. Who knew?
Then I thought, okay, maybe edge detection? So I played around with the Canny edge detector. It gave me some interesting results, highlighted the outlines of clouds and trees, but it didn’t really isolate the sky as a distinct object. It was just a bunch of lines everywhere. Messy.
I was getting frustrated, ready to chuck the whole project, but I figured I’d try one more thing. I remembered reading about using machine learning for image segmentation. Seemed overkill for what I was trying to do, but hey, what did I have to lose?
I downloaded a pre-trained segmentation model. I think it was something based on ResNet, but honestly, I don’t remember the exact details. Point is, it was already trained to recognize different objects in images – people, cars, buildings, etc. I figured, maybe it could also pick out the sky.

I hooked the model up to my script and ran it on a few images. And bam! It actually worked. Sort of. It didn’t perfectly isolate the sky every time, but it did a pretty decent job. It would often get confused by clouds, mistaking them for other things, but it was a HUGE step up from my previous attempts.
From there, it was just a matter of tweaking the output of the model. I wrote some code to smooth the edges of the segmentation mask and fill in any holes. It wasn’t perfect, but after a few hours of tinkering, I had a pretty good system for isolating the sky in almost any image.
I know “molia fetui” isn’t really a recognized term for any of this, it just popped into my head when I was working on it. Kind of a placeholder name that stuck. Maybe there’s a real definition out there, who knows? But for me, it’s just a reminder of that time I spent wrestling with image processing and accidentally stumbling onto a solution that actually worked.