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?
364 views Asked by Prachi At
1
There are 1 answers
Related Questions in MATLAB
- Convert Cell Array of Symbolic Functions to Double Array of Symbolic Functions MATLAB
- How to restrict vpasolve() to only integer solutions (MATLAB)
- "Error in port widths or dimensions" while producting 27
- matlab has encountered an internal problem needs to close
- Minimize the sum of squared errors between the experimental and predicted data in order to estimate two optimum parameters by using matlab
- Solve equation with Crank Nicolson and Newton iterative method in Matlab
- Why options are not available in EEGLAB menu options?
- ash: ./MathWorksProductInstaller: not found, but file exists
- iterative GA optimization algorithm
- Create Symbolic Function from Double Vector MATLAB
- Fixing FEA Model loading with correct units and stress results
- loading variables from a python script in matlab
- Why cannot I set font of `xlabel` in `plotmf` in MATLAB?
- How would I go about filtering non-standardly formatted serial data which contains some junk binary between data entries?
- Cyclic Voltammetry Simmulation in MATLAB, I am running into issues with my data points returning as NaN values, i am a beginner, any help wanted
Related Questions in GESTURE-RECOGNITION
- Is there a way to recognize hand gestures in Meta Spark AR Studio?
- Incompatible tensor shape when trying to train custom model for mediapipe gesture recognition
- mediapipe .GestureRecognizer() throwing AttributeError
- Flutter: Why won't my DraggableScrollableSheet swipe up?
- MAUI: How to bind Event Properties(sender, EventArgs) in code; binding to ViewModel or Code Behind
- Draggable and zoomable AsyncImage does not trigger long press gesture
- How to change the Notification (Local or Push) tap behaviour in iOS
- How to make a Chip that handle both onDeleted and tap on it to trigger extra action
- Mediapipe's output 'multi_hand_landmarks' not working in the code
- React-native: TextInput getting overlapped to it's parent view when app comes foreground
- SwiftUI - Multiple views react simultaneously to gesture?
- How do I force single finger map movement in Flutter (web) google_maps_flutter?
- Error in Gesture Recognition System in Webcam Display
- NLP for Sign Language
- How to Implement Multi-hand Gesture Recognition with Mediapipe Model Maker
Related Questions in COMPLEXTYPE
- Map existing fields to a complex type in EFCore
- Blazor SSR Component changes subtypes of Model type when rendering page
- complex("inf") ** 1 throws OverflowError
- Complex Type Ordering in Enterprise Architect Sparx Systems
- XSD Validation Catching ALL Errors within each complexType elemnt - FAILS to catch all
- BesselJ in .net accord can't accept complex number
- ASP.NET Core Web API - How to configure Swashbuckle when using custom model binder?
- Post selectlist item from Angular to ASP.NET Core API
- 2 variables numerical integration integral in python
- XSD complexType with element AND simpleContent
- nesting <choice> and <sequence> to create arbitrary element selection in XSD
- Unknown column in field list error using Complex types in EF Core 3
- How to force a comlpexType element to have at least 3 characters in a string?
- Restriction on values of N elements with XSD
- passing an array to wsdl file using php doesn't work properly
Related Questions in BINARY-IMAGE
- Colour a binary image in matlab?
- Properties of Square in Binary image
- How to combine binary mask of different shapes
- Coloring the categorical image
- A binary image has a black shape with white spots and white background with black spots. How to detect the square OpenCV python
- Merge "True" chunks in binary array (Binary Closing)
- To encode image using jbig2enc
- Implementation of JBIG-KIT Via MATLAB
- Detecting B&W Clusters of Pixels
- Convert Binary Image to Image and Insert into Google Doc - Google Apps Script
- Extract most central area in a Binary Image
- Find the center of space between two segments in image
- How can i convert png image to binary 0 1 in python
- How to find pixel color in image?
- what is this response format image
Related Questions in HOMOMORPHIC-FILTER
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?
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)




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.