Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
2answers
338 views

Gaussian blur leads to white frame around image

I'm applying a blur effect to an image in WPF like so: <Image ClipToBounds="True"> <Image.Effect> <BlurEffect Radius="100" KernelType="Gaussian" ...
12
votes
4answers
11k views

How do I gaussian blur an image without using any in-built gaussian functions?

I want to blur my image using the native gaussian blur formula. I read this, but I am not sure how to implement this. How do I use the formula to decide weights? [I mentioned MATLAB because I do not ...
7
votes
4answers
212 views

setting loses caret position on <pre> element on pressing TAB key

I have pre with contentEditable="true" on my webpage and I am trying to make it append "\t" when I press <TAB>. I found some other plugins for that but they were working only on ...
7
votes
5answers
9k views

How to blur the div element?

I have a dropdown menu inside a DIV. I want the dropdown to be hide when user click anywhere else. $('div').blur(function() { $(this).hide(); } is not working. I know .blur works only with ...
7
votes
7answers
9k views

How to implement a box or gaussian blur on iPhone

I want to be able to take an image and blur it relatively quickly (say in 0.1 sec). Image size would almost never be larger than 256 x 256 px. Do I have to loop thru every pixel and average them with ...
6
votes
3answers
2k views

Why does a PNG image sometimes get blurry depending on its position in a view

I have noticed that when placing PNG images into a view using IB and/or animating those images to various positions around a view, the image can sometimes get a slight blur. In most cases I can ...
6
votes
4answers
9k views

Using JQuery to bind “focus” and “blur” functions for “window”, doesn't work in IE

I need to use JQuery like the follwoing: var focusFlag = 1; jQuery(window).bind("focus", function(event) { focusFlag = 1; }); jQuery(window).bind("blur", function(event) { focusFlag = 0; }); Does ...
5
votes
3answers
578 views

Implementing Gaussian Blur - How to calculate convolution matrix (kernel)

My question is very close to this question: How do I gaussian blur an image without using any in-built gaussian functions? The answer to this question is very good, but it doesn't give an example of ...
5
votes
2answers
3k views

How to prevent Android's drawBitmap from only drawing black images?

As per the original question, The end result is a rounded-rect png in an ImageView with a natural looking drop shadow. I have the shadow working, but when it draws, it makes the entire image black. ...
5
votes
5answers
16k views

Full Page Blur in CSS

How can I blur a whole page using CSS? Other elements such as images are allowed.
4
votes
1answer
69 views

How to blur the outcome of a fragment shader?

I'm working on a shader that generates little clouds based on some mask images. Right now it works well, but i feel the result is missing something, and i thought a blur would be nice. I remember a ...
4
votes
1answer
220 views

Is there any way to blur all page and focus certain div with jquery/javascript?

Is there any way to blur all page (for example set new background and give it to the foreground with z-index) and focus certain div (let's say error message) with jquery/javascript? Do you know any ...
4
votes
3answers
292 views

IE8 blur filter on a canvas

I've got a canvas that works thanks to Google's excanvas in IE. Now I want to blur the thing. I added a blur filter with the IE propertiary syntax and it blurred the canvas and the text inside a div. ...
4
votes
1answer
289 views

jquery IE8 - using live('blur', function) and live('change',function) together

Ok, I have a weird problem with IE8 and jQuery. See the code below: <!DOCTYPE html> <html dir="ltr"> <head> </head> <body> <input> <script ...
4
votes
2answers
1k views

jquery bind focus / blur events to AJAX loaded content

I have this script which works fine to add / remove a class on blur / focus on text inputs and textareas - however I need to bind it to also work on content added after page load via AJAX: ...
4
votes
1answer
1k views

How do I use a GLSL shader to apply a radial blur to an entire scene?

I have a radial blur shader in GLSL, which takes a texture, applies a radial blur to it and renders the result to the screen. This works very well, so far. The problem is, that this applies the ...
4
votes
2answers
2k views

How to blur a Bitmap (Android)?

I am struggling to get Bitmaps blurred using Android. I have seen a lot of information about using a simple kernel like 0 0 0 5 0 0 0 0 5 18 32 18 5 0 0 18 64 ...
4
votes
2answers
746 views

gaussian blur with FFT

im trying to implement a gaussian blur with the use of FFT and could find here the following recipe. This means that you can take the Fourier transform of the image and the filter, multiply ...
4
votes
1answer
2k views

hide keyboard in iphone safari webapp

I'm creating a webapp for the iPhone, based in HTML/CSS/JS. I'm using forms to receive input and pass data to the script, but a problem I'm encountering is that the keyboard won't disappear. The user ...
4
votes
2answers
578 views

Is it possible to smooth a scaled TBitmap in Delphi?

I am using Stretched=True on a TImage with a 256x256 bitmap. This gets scaled down by 1,2,4 or 8. As expected, text on the bitmap gets more horrible the more I depart from '1'. I notice though that ...
4
votes
3answers
7k views

jQuery: On form input focus, show div. hide div on blur (with a caveat)

I am able to make a hidden div show/hide when an input field is in focus/blur using the following code: $('#example').focus(function() { $('div.example').css('display','block'); ...
4
votes
3answers
2k views

clicking on a div's scroll bar fires the blur event in I.E

I have a div that acts like a drop-down. so it pops-up when you click a button and it allows you to scroll through this big list. So the div has a vertical scroll bar. The div is supposed to ...
3
votes
0answers
443 views

backbone.js click and blur events

I'm having some trouble with blur and click events in backbone. I have a view (code below) that creates a little search entry div with a button. I pop open this div and put focus on the entry field. ...
3
votes
2answers
307 views

PHP/GD : Better Gaussian blur

I want to blur an image with GD library, unfortunatly the GAUSSIAN_BLUR effect that GD gives isn't enough and i want something being more blurrish <?php $im = imagecreatefrompng($_GET['image']); ...
3
votes
2answers
638 views

Blur show effect - html5 canvas

I want to create a blur show effect like : http://www.flasheff.com/patternsshowcase/ (FESBlur). I've tried to use http://www.quasimondo.com/StackBlurForCanvas/StackBlurDemo.html using setInterval and ...
3
votes
1answer
1k views

openGL / GLSL: bloom/blur, rendering to FBO

I've reached another impasse I can't seem to resolve on my own. I really hope someone can help me out. I've been trying to create a nice little bloom effect using GLSL, which worked quite well. When ...
3
votes
1answer
371 views

What's wrong with this python image blur function?

EDIT: Thanks to Howard, I've corrected the code here and it seems to be working now. EDIT2: I've updated the code to include a vertical blur as originally intended. Resulting sample output with ...
3
votes
2answers
247 views

Make a search menu disappear when the search field loses focus, but still allow user to click on links

On my website I have a search box (text input field). When the user clicks on it and starts typing text a menu of links appears. The menu appears via JQuery - The following command makes the menu ...
3
votes
1answer
261 views

Exclude view from blurring android

I am having a VideoView in my application. I have set blur flags in my activity getWindow().setFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND, ...
3
votes
2answers
99 views

Call actual function from blur()

I'm trying to write some jquery that will call a function when an object is blurred. Because of some of the requirement in my underlying code, I need to call a function, like this: ...
3
votes
1answer
498 views

Problem with xna shader

Trying to make a glow effect in xna but it doesn't show the glow or any change at all. Also my back color is purple instead of black and I can't change that either : ...
3
votes
1answer
289 views

Blurring a cubemap

Any ideas how to do it? Now i have dynamically generated cubemap, which i use as a reflection texture on torus. Blurring every side separately won't do the trick, right? Because of pixels near the ...
3
votes
2answers
2k views

Gaussian blur and convolution kernels

I do not understand what a convolution kernel is and how I would apply a convolution matrix to pixels in an image (I am talking about doing a Gaussian Blur operation on an image). Also could I get ...
3
votes
2answers
292 views

Clicking on iFrame does not blur Ext Combobox

I have a page with a Ext.form.ComboBox and a TinyMCE Editor, which uses an iframe for its body. The problem is that when the ComboBox has focus and the user clicks on the iframe, the ComboBox's blur ...
3
votes
3answers
3k views

Fast Bitmap Blur For Android SDK

Currently in an Android application that I'm developing I'm looping through the pixels of an image to blur it. This takes about 30 seconds on a 640x480 image. While browsing apps in the Android ...
3
votes
4answers
10k views

Gaussian Blur onHover Using jQuery

I am wondering if there is some way to apply a gaussian blur onto a div using jQuery (or CSS that jQuery can modify). I have looked into blur(), but at least with Safari, it doesn't seem that it ...
3
votes
3answers
1k views

Action Script3 / Pixel Bender Compound Blur effect?

I need Action Script3 / Pixel Bender blur filter with mapping capability’s. We have such image, we want to apply such blur map to get such result Its also known as Compound Blur effect. Has ...
3
votes
7answers
3k views

Blur Event Does not get Fired in IE7 and IE6

I have a dropdown Menu where in a div is clicked and List is shown. On focus out I am supposed to hide the list(i.e. when the user clicks or focuses on some other element and not on mouse out) ...
3
votes
7answers
2k views

Why is my UIImageView blurred?

I have a really weird problem with UIImageView. I have an image (an RGB png) 45x45 pixels which I add to the view. I can see that image is blurred after added to the view. Here is the same image in ...
3
votes
2answers
2k views

Keep focus on blur event

I am using jquery to keep the focus on a text box when you click on a specific div. It works well in Internet Explorer but not in Firefox. Any suggestions? var clickedDiv = false; ...
3
votes
1answer
1k views

Javascript blur() command in IE8 on Vista doesnt work

I have a project that pops up a window with a message for the user. It is displayed for 10 seconds and then is sent to the background using the javascript "self.blur()" command. I dont want to close ...
2
votes
2answers
29 views

How to Roll back original width for disabled input after cursor pass over?

How do I roll back to original width this disabled input after cursor pass over, I already tried with.blur but is not working. $('input[readonly]').mousemove(function(){ if ...
2
votes
2answers
38 views

Using focus and blur to show and hide a DIV in an unordered list

I am using Fred LeBlancs roundabout plugin and I have incorporated a lightbox to the "active" central image only ( why I "addClass" .active). I also want to show a hidden div with caption text when ...
2
votes
2answers
45 views

not losing the focus event on jquery

I have this html: <div style="display:none" id="myDiv"> <a href="javascript:adToText('some text 1')">click me</a><br> <a href="javascript:adToText('some text ...
2
votes
1answer
117 views

Image processing degradation function with matlab

I am very new to matlab and image processing toolbox. I have a source image in matlab. I need to blur this image by taking the Fourier transform of it and then multiply it with H(u,v). At least I ...
2
votes
2answers
62 views

javascript: How far back does the window get pushed when calling the blur() method? Any rules? Browser-specific?

Does it go all the way to the back? Or does the window go to the back of the browser windows only? How does the functionality vary across browsers? EDIT 6:19pm 10/19/2011: Sorry, i mean how far does ...
2
votes
1answer
126 views

Gaussian blur and FFT

I´m trying to make an implementation of Gaussian blur for a school project. I need to make both a CPU and a GPU implementation to compare performance. I am not quite sure that I understand how ...
2
votes
0answers
446 views

ExtJS 4 - Combo Box blur event getting fired twice

I have a simple combobox with a blur event. The blur event has an alert called for testing purpose currently. The issue is that this blur event gets fired twice as following: If the cursor is in ...
2
votes
1answer
178 views

Variable radius Gaussian blur, approximating the kernel

I'm writing a Gaussian blur with variable radius (standard deviation), i.e. each pixel of the image is convolved using a different kernel. The standard techniques to compute Gaussian blur don't work ...
2
votes
4answers
205 views

jQuery blur handler - not working?

I don't understand why the jQuery blur handler isn't working in the most simple case. I'm literally creating a div 100px by 100px and setting a blur event on it, but it's not firing: ...

1 2 3 4 5 6