Questions tagged [image]

57 questions
5
votes
1 answer

What algorithm to reassemble a broken image?

What algorithm can I use to reassemble a broken image? Is there any technique? algorithm? Can I use graphs? machine learning? computer graphics?
information
  • 113
  • 1
  • 10
3
votes
1 answer

Why BMP file format last line of image is first line on file?

I'm studying Microsoft Windows Bitmap File Format, extension BMP. I'm curious to know why scanlines are stored on file from bottom to up: the last scanline on image is the first line on file and the first scanline on image is the last line on…
alvalongo
  • 131
  • 4
1
vote
1 answer

Description of the process involved in displaying digital images

Could someone please provide me with/point me to a description of the process involved in displaying a digital image? Starting from reading the data from a file to displaying the image on the screen. I am puzzled regarding which parts of this…
odysseas
  • 113
  • 2
1
vote
1 answer

Image made of shapes - terminology + software?

I've often seen images that look like the following example Q1) is there a term for such an image? Q2) What common software is used to convert a real photo (e.g. human face) to be composed of such shapes? (or even an online service)
joedotnot
  • 121
  • 3
0
votes
1 answer

basic of image dithering

Is just read about image-dithering ? So I tried to implement that. Here is my result. Can someone verify it? My code : import numpy as np from numpy.random import default_rng import matplotlib.pyplot as plt n = 300 real = np.random.randint(low = 0,…