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
1
vote
0 answers

Why this pixelation animation is jolty

I have the following multi-step pixelation animation. It animates from low-to-high pixelation very slowly to show you that it jolts in between some of the steps, as if the image is slightly moved between renderings. I can't figure out why this is…
Lance
  • 75,200
  • 93
  • 289
  • 503
1
vote
1 answer

If it is possible to animate image pixelation without canvas, using only CSS

So you can get pixelation in CSS by doing the following: Set background-image to a very small image (say 50px or 100px). Set image-rendering: pixelated on the element. That will give you the pixelated look. Now I would like to animate this, by…
Lance
  • 75,200
  • 93
  • 289
  • 503
1
vote
1 answer

How to pixelate a binary (P6) PPM file

I am struggling to pixelate an image which is made up of RGB values stored in a binary (P6) PPM file. The steps to pixelate the image are as follows: Read in the binary data and store it in a 1-dimensional array Iterate through the data stored in…
p.luck
  • 646
  • 2
  • 9
  • 34
1
vote
1 answer

Clean image rendering in flash player

Ladies/ Gentlemen We are building a flash based product where we need to create icons for various modules. we are having challenges in look and feel of the icons- what looks really good on Adobe Illustrator/ Photoshop looks jagged on flashPlayer. A…
RG1967
  • 378
  • 1
  • 15
1
vote
3 answers

How to reduce the effect of pixelation by computing the color value at several points within each pixel and taking the average?

This is an exercise from The Go Programming Language by Donovan & Kernighan: Exercise 3.6: Supersampling is a technique to reduce the effect of pixelation by computing the color value at several points within each pixel and taking the average. The…
Shangchih Huang
  • 319
  • 3
  • 11
1
vote
0 answers

Pixelation via SFML (2x,4x)

Is there any legal way to get this: True Pixels dot JPEG from this: Not_True Pixels dot JPEG I got first one by real-time image filtering, but it provides random pixel selection and low amount of FPS. short k = 4; sprite.setScale(k, k); …
Alex Kiri
  • 11
  • 1
  • 2
1
vote
3 answers

How to pixelate an image in iOS?

I'm to create a simple app with the following features: First page of app will display a list of images from server (when we display these images we should pixelate it). Once user clicks on any pixelated image then it will open in detail view…
1
vote
0 answers

FFMPEG - add pixelated circular filter over video

please is possible to create circular pixelated filter to cover face. Something like this: ffmpeg: how to add pixellate effect? but only in circle
Daew dawe
  • 99
  • 8
1
vote
1 answer

How to make looking good TextMesh text

I need to show good looking text I generate large text texture but text looks pixelated (( How to fix this?
Oksana
  • 13,442
  • 10
  • 53
  • 89
1
vote
1 answer

Loaded image in UIImage is pixelated on retina

I parsed the data from a web which also contains jpg image. The problem is that the image looks blurry/pixelated on retina display. Any solution for this? Thanks. NSData *data = [NSData dataWithContentsOfURL:linkUrl]; UIImage *img =…
Benjamen
  • 609
  • 1
  • 5
  • 13
1
vote
1 answer

Android webview app on ICS getting pixelated

My android app is working fine on all android devices except in samsung devices having ICS. It's a webview app and the images are getting pixelated on samsung devices having ICS. Any idea on this?
0
votes
1 answer

In Unity, are there any ways to get object information pixel in screen is rendering?

I'm trying to figure out how to get object's information pixel in screen is rendering in shader. I'm trying to make a 3d pixelation shader. And this is done by 1.getting the render texture from camera. 2.and pixelate that using shader graph and it…
Gejam
  • 1
  • 1
0
votes
0 answers

How does one validate that ad traffic is coming from a real user of the app and not a bot?

I have an app that has been on the Play Store for many years and using MoPub for many years. The app has dozens of millions of downloads and hundreds of thousands of daily active users. All of the sudden MoPub claims I have device ID stuffing. I'm…
casolorz
  • 8,486
  • 19
  • 93
  • 200
0
votes
1 answer

How i can pixelate a image from opencv video capture in real time

import cv2 import matplotlib capture = cv2.VideoCapture(0) x=0 while(True): ret, frame = capture.read() grayFrame = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) cv2.imshow('video gray', grayFrame) cv2.imshow('video…
0
votes
0 answers

ffmpeg - How to change the filter-paramaters depending on time oder framenumber?

Hallo to all userse and helpers here in this forum! Thank you, i am new and i have found allready a lot of solutions. Now I want to ask, if someone can help me: I have a Movie about 30 seconds made of 1 image. Now I want to pixelate depending on …