Cunha · @mudaste
274 followers · 988 posts · Server mstdn.social

Descobri há pouco a @gmic. G'MIC é uma ferramenta (código aberto) poderosa de processamento de imagens e framework disponível para várias plataformas, incluindo Linux.

Oferece centenas de filtros e efeitos que podem ser aplicados em imagens, permitindo realizar desde simples ajustes de cores e correções até transformações complexas, como manipulação artística, simulação de efeitos de filmes e criação de estilos alternativos.

gmic.eu/

#gmic #OpenSource #FOSS #imageprocessing

Last updated 1 year ago

raimoncoding · @raimoncoding
34 followers · 97 posts · Server techhub.social
R. L. Dane · @RL_Dane
1471 followers · 25669 posts · Server fosstodon.org

Hey @AskFedi,

Wondering if any or gurus know of a utility to find similar images or generate a hash from image content (and not just raw data).

I'm trying to de-duplicate some images, but realized some have been renamed AND re-compressed, so there's no easy way to find and eliminate the dupes

I've already done deduping based on sha512sum, but that doesn't help when the image has been recompressed.

#photography #imageprocessing #foss #commandline

Last updated 1 year ago

bysariipek · @bysariipek
37 followers · 9 posts · Server en.osm.town
Elisabeth Kugler · @KuglerElisabeth
210 followers · 156 posts · Server mstdn.science

Sip in style: where Art and Science converge 🔬🎨

It's not just a mug, it's an ode to the harmonious blend of artistic expression and data-driven insights.

Shop now and make your coffee breaks truly extraordinary.

Visit our shop and check out our mug collection - Link in Bio🔗

#sciart #ScienceArt #Science #art #microscopy #scicomm #imageprocessing #ImageAnalysis #sciencefun #microscope

Last updated 1 year ago

JuliaImages · @juliaimages
13 followers · 6 posts · Server julialang.social

Interested in learning image processing in Julia? Come Join us Tomorrow at JuliaCon'23

Presenters: Tim Holy and Ashwani Rathee
Date Time, Venue: Tuesday 25th July 9AM EST, MIT Stata Center(32-G449 (Kiva))

Notebooks: lnkd.in/dmuBqAfu

#julia #julialang #imageprocessing

Last updated 1 year ago

Demian · @DemianDev
5 followers · 22 posts · Server mastodon.gamedev.place

Whoops, I think I messed up my vector math. I think my pixels may be overshooting a little and I ended up with... leaking colors?

#imageprocessing

Last updated 1 year ago

Demian · @DemianDev
5 followers · 22 posts · Server mastodon.gamedev.place

I'm working on some basic image processing (dilation) in Python. After implementing basic caching of pixel coordinates I'm getting 3–5x faster execution over a naive implementation of checking every pixel in every loop. However, purely as a side effect, the loops stop when there is no more data to process so manual progress tracking to break early is unnecessary. I love it when I accidentally make my code cleaner.

Next step: signed distance fields/jump flood algorithm?

#python #imageprocessing

Last updated 1 year ago

Albert Cardona · @albertcardona
1843 followers · 3056 posts · Server mathstodon.xyz

@philiphubbard Have you tried Benjamin Schmid's 3D animation and rendering language, , for :
bene51.github.io/3Dscript/

It's really not hard and surprisingly capable.

There's also a paper about it: nature.com/articles/s41592-019

#3d #imageprocessing #FijiSc #3dscript

Last updated 1 year ago

Albert Cardona · @albertcardona
1841 followers · 3038 posts · Server mathstodon.xyz

DeepImageJ 3.0 released—a user-friendly plugin that enables the use of a variety of pre-trained neural networks from the . Works with small and also very large images thanks to .

deepimagej.github.io/

#imageprocessing #imagej #tensorflow #pytorch #deepimagej #ImgLib2 #bioimagemodelzoo #FijiSc

Last updated 1 year ago

Albert Cardona · @albertcardona
1837 followers · 3022 posts · Server mathstodon.xyz

@ftrain Check out the open source Fiji image processing software fiji.sc and the image processing forum forum.image.sc

#imageprocessing #FijiSc

Last updated 1 year ago

AskUbuntu · @askubuntu
136 followers · 1898 posts · Server ubuntu.social

how to find all pictures with a certain aspect ratio in a directory and its subdirectories

askubuntu.com/q/1474208/612

#commandline #imageprocessing

Last updated 1 year ago

Bamboy · @bamboy
19 followers · 108 posts · Server mastodon.gamedev.place

1/15
on how I made a style procedural level generator, with visual examples and names of image processing algorithms being used for each step.

While I am using , the level generator code is standalone and I hope to write this in a way that is useful for any language. My focus is going to be on the actual steps being taken, and less on the programming.

#tutorial #thread #worms #unity #csharp #gamedev #indiedev #programming #imageprocessing

Last updated 1 year ago

Anathema Device · @anathema_device
439 followers · 9134 posts · Server bne.social

This is a fascinating deep dive that starts off investigating why you can't use a certain image in some journals and ends up being a sweeping look at women in computing, sexism, and...image processing algorithms

You don't need to know a thing about the last item to enjoy this video!

---

The image you can't submit to journals anymore

youtube.com/watch?v=yCdwm2vo09

#lenaimage #sexism #imageprocessing

Last updated 1 year ago

AskUbuntu · @askubuntu
122 followers · 1867 posts · Server ubuntu.social

Is there a program to make an image sharper?

askubuntu.com/q/1471360/612

#imageprocessing

Last updated 1 year ago

Martin Trapp · @trappmartin
617 followers · 431 posts · Server ellis.social

If you are working on and need to images, check out the medical volume annotator (MVA)! Great product by a brilliant ex-colleague.

mva.ai/

#medical #imageprocessing #annotate

Last updated 1 year ago

AskUbuntu · @askubuntu
115 followers · 2063 posts · Server ubuntu.social

How to move a file to the desktop using the terminal?

askubuntu.com/q/1468956/612

#imageprocessing

Last updated 1 year ago

AskUbuntu · @askubuntu
115 followers · 2061 posts · Server ubuntu.social

i want to add image in desktop to know information about it by exif but i don't know how to add image in desktop to cope it in terminal

askubuntu.com/q/1468956/612

#imageprocessing

Last updated 1 year ago

C. · @cazabon
109 followers · 1603 posts · Server mindly.social

@villares @TomLarrow To clarify...

Your table of colours is a lookup table for a colour-indexed image?
Your other 2D array is of 3-tuples is RGB pixel values, i.e. an RGB image?
You want to take the array of RGB values, and convert it to an array of index values from the colour lookup table?

If so, I'd reverse the LUT and just convert directly:

rev_lut = dict([(v, k) for (k, v) in colour_lut.items()])
indexed_img = [[rev_lut[rgb] for rgb in row] for row in rgb_img]

#python #imageprocessing

Last updated 1 year ago

Daniel Pelliccia · @danielpelliccia
63 followers · 130 posts · Server aus.social

Wavelet decomposition is very popular in image analysis and processing. Here's my attempt to share some code to perform spectral smoothing (or denoising, to be fancy) using the same principle.

Wavelet denoising of spectra • NIRPY Research
nirpyresearch.com/wavelet-deno

#imageprocessing #chemometrics #spectroscopy #wavelets #dataprocessing

Last updated 1 year ago