Lossy compression for NES screens

This is an archive of a topic from NESdev BBS, taken in mid-October 2019 before a server upgrade.
View original topic
Lossy compression for NES screens
by on (#179253)
So I took a couple days to tackle a problem I had to deal with a couple of times: Fitting complex images into the 256 tile limit.
What I basically tried out was an automated version of the process I end up do manually. Randomly search for 2 similar tiles that are unique in the nametable and merge them in some way.

In this program similar tiles are pairs of tiles that have the least number of pixels changed, and merging is randomly selecting the pixels from both tiles

Example image NES screen sized image with way too many distinct tiles (471)
Image
Source: https://twitter.com/azumakiyohiko/status/495548119048679426

After merging tiles together until there's only 256 unique ones.
Image

Results vary due to random pixel selections between tiles. Not the best of quality, but looks on par with the worst JPEG compression. In any case I figured this hack of a tool might be useful to someone. It's input is the output of tepple's pilbmp2nes.py

Edit: Attachment moved off site to compress-nes-image.py
Re: Lossy compression for NES screens
by on (#179256)
Two ideas that might improve results:

1. Instead of just "number of changed pixels", multiply this number by the number of times that either tile is being used in the image. That will give you the total number of pixels changed in the whole image, rather than just the number changed in the individual tiles. (Also might guide the merging process; i.e. where pixels differ, take more from the one that is used more.)

2. Use a 3x3 neighbourhood to weight the importance of pixel changes. e.g. if you're about to place a black pixel into a 3x3 region of white pixels, consider this a greater change than placing a black pixel next to a group of black pixels just extending an edge, etc. This might let you favour changes that don't stand out as much? (Also gives you a way to choose which pixels to keep from the two merging tiles.)
Re: Lossy compression for NES screens
by on (#179284)
Suggestion 1 about counting the pixel changes of the whole image helped a lot. What is measured now better matches what's changed. Combined with the suggestion to bias the merge changes, this now does subtle changes to more tiles rather then big changes to less.

Image

I not sure how to work in suggestion 2. I did try something with a 3x3 region, but I must of severely messed up the weights because the result was garbage.

The way I see the problem is that tiles with opposite edges and corners are matched together, but every time I try to fix the random edge dots, the overall picture gets worse. I'm starting to think the random dots are actually a feature and the best compromise for reducing the tileset.

A thing that I might try another day is to factor in a manually made mask that prevents select pixels from changing. So that some crucial details, like faces, are preserved.

Edit: Attachment moved off site to compress-nes-image-2.py
Re: Lossy compression for NES screens
by on (#179297)
JRoatch wrote:
So I took a couple days to tackle a problem I had to deal with a couple of times: Fitting complex images into the 256 tile limit.

Example image NES screen sized image with way too many distinct tiles (471)


471? That's honestly not too bad. With fullscreen scenes like this, I say screw the limitations!

I tend to limit my RPG's *ahem* "cutscenes" to 448 tiles, with a timed $00/$10 background split, to use more on-screen tiles. The rest is used for sprite overlays, to enhance the scene. It's all done by hand, on my end, though.
Re: Lossy compression for NES screens
by on (#182904)
Thanks JRoatch for creating (and publishing) this!
It's fantastic and is already helping me a lot with a NES project.

User NESRocks is also using this - and even created a .BAT to make it easier to use (just drop the BMP file to convert.bat).
I'm attaching it here.

Are you planning to release a version that also removes the duplicated tiles?
It can be done on NES Screen Tool, just asking for curiosity.

Thanks! =)
Re: Lossy compression for NES screens
by on (#182906)
Looks like this really rocks ! Drawing such a scene limited to 256 tiles should be hard, a bit of automation can always help.

Also, for those pointing to the possibility of doing raster effects trickery to bypass the limitation, I'd add that there's a million of reason why you'd want to stick to vanialla 256 tiles and not want to deal with PPU register writes midframe at all.
Re: Lossy compression for NES screens
by on (#182914)
A masking feature sounds like a very sensible option to be able to use.

Currently, i'm doing this completely manually.
Re: Lossy compression for NES screens
by on (#208043)
Would you be willing to make compress-nes-image-2.py available under a free software license so that I can incorporate it into my NES background tools?
Re: Lossy compression for NES screens
by on (#208062)
Sure, it's now under the "Expat License".
Re: Lossy compression for NES screens
by on (#208068)
Many thanks.
Re: Lossy compression for NES screens
by on (#208727)
Macbee wrote:
Thanks JRoatch for creating (and publishing) this!
It's fantastic and is already helping me a lot with a NES project.

User NESRocks is also using this - and even created a .BAT to make it easier to use (just drop the BMP file to convert.bat).
I'm attaching it here.

Are you planning to release a version that also removes the duplicated tiles?
It can be done on NES Screen Tool, just asking for curiosity.

Thanks! =)


Some example of as use the output_result.chr and input_tiles.chr In a project?
Re: Lossy compression for NES screens
by on (#208744)
Macbee wrote:
Are you planning to release a version that also removes the duplicated tiles?
It can be done on NES Screen Tool, just asking for curiosity.
My ff-uniq program will remove duplicated tiles from a tileset. However, it does not use the Famicom format directly (but ffbit and bitff can be used to convert in either direction).
Re: Lossy compression for NES screens
by on (#213319)
I've started refactoring what I'm calling "JRoatch's Tile Vector Quantizer" to make it more usable from within other Python programs.

  • biased_random_byte() now called biased_getrandbits() and allows changing word width like random.getrandbits()
  • Can be imported as a library
  • Variable output tile count
  • Takes a filelike for logging the tile count
  • Input and output filenames passed through command line instead of hardcoded

I'll probably add a way to remove duplicated tiles when I integrate it into savtool.
Re: Lossy compression for NES screens
by on (#213351)
Hay! This is pretty neat. I wrote something kinda similar a few years ago for the Gameduino. It used 8x8 4bpp tiles with individual 16bpp palettes. It made using photo input pretty easy, though it looked kinda terrible.

Image Image

I've been musing about doing something similar for the NES. Will have to give it a try. :D
Re: Lossy compression for NES screens
by on (#213381)
Image
Image


Code:
#!/bin/bash

mkdir nam
mkdir nam1
rm nam/a-*m
rm nam1/a-*m
convert -crop 8x8 $1 -depth 2 -colors 4 -compress none nam/a-%010d.xpm
convert -crop 8x8 $1 -depth 2 -colors 4 -compress none nam1/a-%010d.xpm

cd nam

# quita las cabeceras
mogrify -sample $2 *
sed -i $sed '/^s/d' *

LISTA=$(fdupes . | grep "^$" -B 1 | grep "^./" )

# quita los duplicados
fdupes -r1 . | sed -e 's/\(\w\) /\1|/g' -e 's/|$//' > files
while read line; do
        IFS='|' read -a arr <<< "$line"
        orig=${arr[0]}
        for ((i = 1; i < ${#arr[@]}; i++)); do
                file="${arr[$i]}"
                #sleep 1
                ln -sf "$orig" "$file"
        done
done < files
rm files


ls -F ../nam | grep -v @ | while read A; do
   cp ../nam1/$A ../nam/$A
done

# join
rm ../nam.png
N=0
$(echo "convert ( "
ls a-*m | while read A; do
    echo $A
    N=$((N+1))
    [ "$N" == "32" ] && echo " +append ) (" && N=0
done
echo ") -background none -append ../nam.png")
Re: Lossy compression for NES screens
by on (#218025)
A mirror of this script with improvements from tepples is located at my personal site: jrtilevq.py