Questions tagged [pixelate]

Choose this tag when the image is expected to become pixelated, like occurs when forcing large or low resolution, purposely for special effects.

Choose this tag when the image is expected to become pixelated, like occurs when forcing large or low resolution, purposely for special effects.

62 questions
2
votes
1 answer

Pixelate / blur parts of image using an image mask

I need to pixelate parts of an image using an mask image in tif format. In ImageMagick there are multiple options to do it, for example: convert -quality 100 source.tif \( -clone 0 -resize 16% -scale 3840x2160! \) \( unsharp_mask.tif \) -composite…
K.P.
  • 23
  • 3
2
votes
1 answer

How to pixelate an image

I am attempting to pixelate a P6 PPM format image via the following steps: Read a PPM image in grids of 4x4 Find the average RGB colour value of each 4x4 grid Write to a new file by setting each 4x4 grid of pixels in the new image to have the…
p.luck
  • 646
  • 2
  • 9
  • 34
2
votes
1 answer

Android animated pixelation

I'm working on a game that obscures part of image, player then guesses what's hidden and finally the obscured part is revealed, so player can see if he guessed correctly. At the moment I just draw a black box above the obscured part, but it would be…
Axarydax
  • 16,353
  • 21
  • 92
  • 151
2
votes
0 answers

Why is my Scaling-Pixelated(no interpolation/antialiasing) Algorithm Slow? Optimization?

I've decided to get serious about web design, mainly focusing on client side for now. I have been working on some designs incorporating low res images and scaling up to get a pixelated look. The problem is I keep running into variable quality when…
user3083602
2
votes
0 answers

Cordova Android splashscreen wrong size and pixelated

I'm using Cordova to build an app running on both iOS and Android. Cordova version 7.0.1 - Platform Android version 6.2.3 I have a problem on Android about the splashscreen size. I have 6 different PNG size for each density as you can see in the…
Faks
  • 416
  • 5
  • 20
2
votes
1 answer

Images & Icons are getting pixelated when gallery loads

I have a Content Slider (All-in-one-banner sort of) on the home page of my website. Every time this banner slides onto the next image in the queue, the other images (png format) on my page are getting pixelated. Especially it happens in…
Aniruddha Pondhe
  • 1,830
  • 3
  • 17
  • 30
2
votes
2 answers

How to convert from alphabets to pixels

Do you know a program or script that converts from a letter to a matrix (consisting of 0 and 1) representing the letter? For example, from letter I to a matrix something like this: (it's an LED pannel showing letter I): Please let me know a way…
user1776194
  • 21
  • 1
  • 5
1
vote
2 answers

UIImagePickerController pixelated image from choosing too quickly, before image fully loaded

I am using UIImagePickerController in an iOS app to save an image in context using UIGraphicsBeginImageContext/UIGraphicsBeginImageContextWithOptions. I recently noticed that I picture I had saved and then displayed at a later date was highly…
SAHM
  • 4,078
  • 7
  • 41
  • 77
1
vote
0 answers

Images being downloaded on my iphone app are being pixelated - iPhone SDK

Has anyone ever ran into the problem where images being downloaded are slightly pixelated. The only thing they have in common with each other is they are being resized using this function: -(UIImage *)imageWithImage:(UIImage *)image…
PetersCodeProblems
  • 371
  • 1
  • 7
  • 16
1
vote
0 answers

How to Make Sketches pixelated in p5js

I am making a canvas game and I wanted to know if there was any way to make my p5 sketches pixelated? I was wondering if there was anything easier than basically rewriting the p5js library. I tried changing pixelDensity() to 0.1 and it caused the…
1
vote
0 answers

Shadow of RoundedRectangle is pixelated on edges

Based on some logic we apply shadow for RoundedRectangle which is the element used in the .background property of the whole VStack. VStack { ... } .background( RoundedRectangle(cornerRadius: 16, style: .continuous) …
1
vote
0 answers

Detecting a Pixelated Component of an Image Python

I was wondering whether anyone was aware of any approaches to discover which portion of an image was pixelated. For example for the following saussage dog where I have applied the following code img = cv2.imread("sausage.jpg") blurred_img =…
EntropicFox
  • 727
  • 5
  • 11
1
vote
0 answers

Android vector drawables pixelate when inflating new layouts

Hi all and thanks for your feedbacks in advance. I've developed an app (minSdk 24, so there should be no reason to set the flag vectorDrawables.useSupportLibrary = true in gradle) which uses several svg's converted to XML vector drawables in…
1
vote
1 answer

Godot - can I pixelate a node (Sprite)?

Can I pixelate a 2D node (Sprite in my case) in Godot? I need something like this: It doesn't matter how to do it: with a shader or with code or with some tweaks. Any help appreciated.
Yanb
  • 638
  • 1
  • 3
  • 20
1
vote
0 answers

Pixelate Face Tracking with Processing and Opencv

I'm trying to get a live Processing video stream to face detect and pixelate faces in real time. I have got the code working to track faces and draw a rectangle around the face, and I have a separate sketch working to pixelate the whole frame,…