answersLogoWhite

0

An object that produces a blurry image is called out of focus. This can happen when the camera or eye fails to properly focus on the subject, leading to a lack of clarity and sharpness in the resulting image.

User Avatar

AnswerBot

1y ago

What else can I help you with?

Related Questions

What do you call the object that is crossed over the strings when playing a violin?

If it is the object that produces the sound then it is the bow.


What do you call a displaced image of an object as the result of the bending of light rays?

The displaced image of an object due to the bending of light rays is known as a virtual image. This type of image cannot be projected onto a screen and is formed where light appears to diverge from after passing through a lens or mirror.


What do you call an object that produces its own heat and light energy?

An object that produces its own heat and light energy is called a "self-luminous object." This term is often used to describe things like stars or artificial sources of light that generate their own energy.


What do you call an out of focus picture?

Blurry possibly? Anybody correct me if I'm wrong.


Who is face is blurred out in rob dyrdek's show?

His name is "Turbo" but now they call him "Blurry"


What do you call an image created by a mirror?

Virtual Image


What do you call an image created in a mirror?

Its called a virtual image.


What do you call a 3-dimensional photographic image?

a 3D image!


Static method can be call object?

yes we can call a static method with object


What do you call the measurement of the gravitatonal force acting on an object?

You call that the "weight" of the object.


What do we call an object that produces its own heat and light energy?

the sun creates it's on heat because it already fire


How call onMouseMove event when your curser is moving on an image?

You would want to register a MouseMotionListener object with the Component object that contains your image. myComponent.addMouseMotionListener(new MouseMotionListener() { void mouseMoved(MouseEvent ev) { // Put code you want to happen when the mouse moves. // Example: print out the x,y coordinates of the mouse in the object. System.out.println(ev.getPoint()); } void mouseDragged(MouseEvent ev) { // Needs to be implemented as part of MouseMotionListener } });