Steganography Using Fourier Transform and Zero-Padding Aliasing Properties
Steganography technique utilizing Fourier Transform and zero-padding aliasing properties for secure information hiding. The study explores Nyquist rate, padding effects, and DFT characteristics, demonstrating effective data retrieval with minimal error margin. Results suggest high data recovery rates and minimal distortion. The conclusion highlights the significance of DFT and zero-padding in secure data transmission. Relevant references from the field of digital image processing are also provided.
Download Presentation

Please find below an Image/Link to download the presentation.
The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.If you encounter any issues during the download, it is possible that the publisher has removed the file from their server.
You are allowed to download the files provided on this website for personal or commercial use, subject to the condition that they are used lawfully. All files are the property of their respective owners.
The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.
E N D
Presentation Transcript
Digitlis homokra https://people.vts.su.ac.rs/~pmiki/_DALJINSKA_NASTAVA_MIKROKONTROLERI/28.04/ pescanikReal.mp4 https://people.vts.su.ac.rs/~pmiki/_DALJINSKA_NASTAVA_MIKROKONTROLERI/28.04/ pescanik.mp4
Tilt switch https://people.vts.su.ac.rs/~pmiki/_DALJINSKA_NASTAVA_MIKROKONTROLERI/28.04/ tilt.mp4
Tilt switch void setup() { pinMode(3, INPUT); pinMode(5, OUTPUT); Serial.begin(9600); } void loop() { int sensorValue = digitalRead(3); if (sensorValue == 1){ digitalWrite(5, HIGH); } else{ digitalWrite(5, LOW); } Serial.println(sensorValue); delay(500); }
Megszaktsok (interruptok)
Megszaktsok Polling (mailbox example) Szoftveres (timer) Hardveres (k ls hat s id zi ket el , pl. gombnyom s) Arduino Uno (digit lis l b 2, 3)
Szoftveres megszakts #include <TimerOne.h> String LEDStatus = "OFF"; int RedLED = 9; int YellowLED = 10; void setup() { pinMode(YellowLED, OUTPUT); pinMode(RedLED, OUTPUT); Timer1.initialize(1000000); Timer1.attachInterrupt(BlinkYellow); Serial.begin(9600); } https://people.vts.su.ac.rs/~pmiki/_DALJINSKA_NASTAVA_MIKROKONTROLERI/28.04/ intBlink.mp4
Szoftveres megszakts void loop() { digitalWrite(RedLED, HIGH); delay(250); digitalWrite(RedLED, LOW); delay(250); } void BlinkYellow(){ if(LEDStatus=="ON"){ digitalWrite(YellowLED, LOW); LEDStatus="OFF"; return; } if(LEDStatus=="OFF"){ digitalWrite(YellowLED, HIGH); LEDStatus="ON"; return; } }
Hardveres megszakts volatile boolean ledOn = false; void setup() { pinMode(13, OUTPUT); pinMode(2, INPUT); attachInterrupt(digitalPinToInterrupt(2), buttonPressed, RISING); } void loop() { } void buttonPressed(){ if(ledOn){ ledOn = false; digitalWrite(13, LOW); } else{ ledOn = true; digitalWrite(13, HIGH); } } https://people.vts.su.ac.rs/~pmiki/_DALJINSKA_NA STAVA_MIKROKONTROLERI/28.04/pressButton.mp4