logoalt Hacker News

knollimartoday at 2:03 PM3 repliesview on HN

Downsizing a higher res image to lower res means the zoom will be blurry.


Replies

johndoughtoday at 5:24 PM

The order is:

    LLM issues tool call to read high res image ->
    harness sends high res image to server ->
    server downsizes it to 800x800 (blurry) ->
    LLM issues bash command (e.g. `convert`) to crop a small subimage (e.g. 600x600) from the high res image ->
    LLM issues tool call to read subimage ->
    harness sends subimage to server ->
    server does not resize the subimage because it is small already, so it is not blurry when finally ingested by the LLM
show 2 replies
andaitoday at 2:19 PM

They process the original image file with Python on the local device. (And I've seen the web chats do this with their "computer use" features too.)

The really wild one is even blind models will do this and they'll try to run stats on the pixels to figure out what it looks like... the even wilder thing is that it kind of works!

show 1 reply
adastra22today at 3:56 PM

They’re not talking about zooming, hence the quotes.

show 2 replies