I have a gray image on which I have applied homomorphic filtering. The result of this filtering gives me an image which has some complex numbers as it's pixel values. When I viewed imaginary image and real image separately, then I realized I need only imaginary image for further processing. But I am unable to use it as I am unable to binarize the imaginary image for further processing. If anyone has any solution or suggestion regarding this then kindly let me know.
How to use an image having imaginary values for further processing like binarization in MATLAB?
360 Views Asked by Prachi At
1
There are 1 best solutions below
Related Questions in MATLAB
- How to open and read video stream in Matlab
- Interpolation and replace zeroes
- How can I fix my code to do line by line conditional statements in Matlab
- matlab crash during acquisition of pointgrey images
- Calling text file
- Apply gaussian filter on text
- re-plotting of data on same GUI axes in matlab
- Issue with nume1 in MATLAB
- Multiply two variables in Matlab with vpa - high precision
- ODE - Solving Parameter Dependent on Variable [Matlab]
- Need help in detecting multiple blobs
- How does TIC TOC in matlab work?
- Image based steganography that survives resizing?
- lowering computaional cost in finding the location of minimum distance
- FFT Filtering of signal
Related Questions in GESTURE-RECOGNITION
- Why is my convexity defect OpenCV in Android getting error?
- How to detect distance between two taps in Android?
- Methods of gesture 1D recognition using smartphone gyroscope sensors
- Gesture recognition in mobile applications
- Prevent web page from scrolling when double tap on UIWebView
- Best algorithm for recognizing user-defined gestures on Kinect
- Extracting the fingers from the hand
- Can we use a High-Pass filter on an observable stream to detect a shake event?
- How Programmatically tap the Wp8 screen
- Swipe to go back is disabled if the navigation bar is hidden
- Trouble implementing OnGestureListere on a custom view
- hand gesture recognition in matlab
- Android - How to target different architectures with Affective SDK?
- #selector in gesture Recognizer in xcode9
- How to use an image having imaginary values for further processing like binarization in MATLAB?
Related Questions in COMPLEXTYPE
- Why are the aliases for string and object in lowercase?
- Get name of all available classes under model.tt : Entity Framework 6
- Multiple arrays in nusoap output
- How do I make complex int16 numbers in octave?
- C++/LapackE code compiling fine on Windows, but the identical code fails compilation on Linux
- How to identifying whether a template argument is std::complex?
- How to query XML with complex types
- Azure Mobile Services Unable to retrieve [ComplexType] from .net backend
- gsoap complexTtype containing a complexType
- Spring - calling stored function with complex result
- Consume restful webservice with complex type in .NET from coldfusion
- How to use an image having imaginary values for further processing like binarization in MATLAB?
- EXCEL - Check/ identify duplicate text between multiple rows AND on another sheet
- Entity framework column mapping for complex types
- Bind Complex Type in Silverlight Datagrid
Related Questions in BINARY-IMAGE
- OpenCV Save a Mat as Binary (1-bit depth) TIFF
- How to use an image having imaginary values for further processing like binarization in MATLAB?
- transform a pcl::pointcloud to binary image. c++
- Python equivalent for bwmorph('endpoints')
- How to connect disjointed lines or edges in images?
- Image masking by coordinate or changing binary image pixel to black based on the the coordinate
- Running transfer learning for my binary classification model following ResNetV250 model on tensorflow: Value error
- Delphi Retrieve JPG From Long binary data - JPEG error #53
- Conditional mask considering neighborhood in Python
- Matlab - How to binarize a grayscale image with multiple thresholds?
- Tensorflow finding pixels with matching value
- How to make a condition that checks the binary image array and finds the zero row from the center?
- Filter Binary Image to keep only the lines
- OpenCV kmeans binary image
- Problem on converting gray level image to binary image using Python
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?




Like m7913d says, you can take the imaginary part of each pixel by using
imag:Ex:
Besides that, a good technique to binarize is set the threshold using the mean of image.