How to convert a spectrum/spectra to a barcode

조회 수: 2 (최근 30일)
Curious Mind
Curious Mind 2018년 6월 20일
답변: Rajanya 2024년 8월 12일
Hello guys,
I have a spectrum (FTIR) and I want to convert the spectrum to a barcode data and possibly plot it. This could be one spectrum or spectra.
Is there any matlab code that I can use to convert my data (Spectrum or spectra) to a barcode data?
see aatahced an example of the data I'm tryting to convert to a barcode. Column 1 is the wavenumber (x-axis) and column 2 is the intensities (y-axis).
Thank you.

답변 (1개)

Rajanya
Rajanya 2024년 8월 12일
While there is no direct MATLAB functionality which converts sample data into barcode, you can try out a combination ‘repmat()’ and ‘imshow()’ to generate barcodes of your desired lengths and complexities.
By changing the copy number in ‘repmat()’, you can determine the length of your barcode to be generated. Refer to the below example code for better understanding. The binary data is obtained by using a suitable threshold (here, applied on the intensities).
csv = readtable("Convert_To_Barcode.csv")
wavenumbers = csv{:, 1};
intensities = csv{:, 2};
% Normalize the intensities and store the results in normalized_intensities.
threshold = rand; % You can adjust this threshold as needed
binaryData = normalized_intensities > threshold
barcodeWidth = %set a specified value
barcodeImg = repmat(binaryData,barcodeWidth,2)
figure;
imshow(barcodeImg,'InitialMagnification','fit')
The links to the respected documentations are given below:
Hope this helps.

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by