Super-natural imaging
Contents
Kirlian photography and a collection of other super-natural imaging techniques have been the subject of mainstream scientific research, parapsychology research and art. Let's see.
First DIY Kirlian Experiments
Experiments with ITO Glass
DIY Driver
Experiments with XY plotter
One electrode is moving, see https://wiki.sgmk-ssam.ch/wiki/Gcode_2d-plotter
Research into SonoGenetics and the Montagnier case
After some late night discussions and watching this movie about other interesting research topics and stories we also started to look into the experiments by Luc Montagnier. He seems to have been inspired by Jacques Benveniste, who experimented with electromagnetic signatures of highly diluted DNA solutions in the 80ies, and caused quite some discussions around that "memory of water" and the homeopathy circles, and then later started a company with the name DigiBio... Funny how that "Digital Biology" appeared here already.
See a publication by Montagnier from 2009 "Electromagnetic signals are produced by aqueous nanostructures derived from bacterial DNA sequences", where he kinda describes observations and theories of low frequency waves in the ambient electromagnetic background due to DNA nanostructures at high dilutions. And then furthermore describes how that "signal" can be digitized, sent over the internet and then played back to "empty" water and the DNA structures "re-appear" and can be detected with PCR. Transduction of DNA information through water and electromagnetic waves.
Kinda reproducing the measurement setup:
The external coil is just to add some fields from a source, such as the mixtape, aka playing the music through the coil, or to add some kinda artificial excitation (7 Hz which was found to be the minimally, as stated in the research above). The inner coil is to pick up EM (electromagnetic) signals, which are amplified with kinda not so well working crappy op-amp circuit. See Op-ampology or this source. The amplified signal is then played on an active little speaker. I need to fix the op-amp, and use this singly power supply version, and maybe add some shielding.
Links
Super-resolution imaging - Wikipedia
https://en.wikipedia.org/wiki/Super-resolution_imaging
Kirlian photography
https://en.wikipedia.org/wiki/Kirlian_photography
Kirlian Camera
https://redice.tv/news/russian-kirlian-camera-can-see-human-soul
Kirlian Photography: The Myth & Technique Debunked
https://creativephotoconnect.com/kirlian-photography/
Superimposition of thermal imaging to visual imaging using homography.
https://www.ncbi.nlm.nih.gov/pubmed/18002718
Floppy Disk IR Camera Hack
https://www.instructables.com/id/Floppy-Disk-IR-Camera-Hack/
Thermalcameras for ghost hunters
https://www.higgypop.com/news/why-do-ghost-hunters-use-thermal-cameras/
ELECTROPHOTONIC IMAGING RESEARCH
https://gdvcamera.com/electrophotonic-imaging-research/?fbclid=IwAR3cL9pVy77D_3t5KGRj9Dzf33hCOBtVTlSeAe38Kp1yc8f2QVCbHmECMAQ
“Bio-Well Technology”
http://gdvcamera.com/gdvcamera-bio-well/?fbclid=IwAR0JS46Wwlkw7fSol_1aRXVQlfOjKzWmU-D_RJFLULlEob3p2N1ec6eCQaI
Bioelectrography
https://www.iumab.org/different-names-of-bioelectrography/
DIY Kirlian Photography(FULL PROJECT DETAILS)
https://www.youtube.com/watch?v=wMWUNQFLmTE
Make Kirlian Photography Device
https://www.youtube.com/watch?v=N5VWdtDN4iQ
How to take Kirlian photos (Instructables)
https://www.instructables.com/id/How-to-Take-Kirlian-Photos/
Arduino Kirlian Device
https://www.instructables.com/id/Arduino-Kirlian-device/
Measurement of the Human Biofield
https://www.faim.org/measurement-of-the-human-biofield-and-other-energetic-instruments
HARRY OLDFIELD / camera filter
https://www.youtube.com/watch?v=Y3qxhBc2OB0
https://www.youtube.com/watch?v=cHbhoj43GoI
https://www.youtube.com/watch?v=GNduy5midzk
http://www.electrocrystal.com/shop.html
Bioenergy Technology | Wagner Alegretti
https://www.youtube.com/watch?v=Kr85BurAW_k
Bioenergy Demonstration by Dr. Valerie Hunt
https://www.youtube.com/watch?v=_AUqSRVbhC0
Subtle Energy Retreat Presentation with Dr Thornton Streeter
https://www.youtube.com/watch?time_continue=187&v=4we5z76TSWk
https://www.slideshare.net/thorntonstreeter/subtle-energy-retreat-presentation-with-dr-thornton-streeter-from-the-centre-of-biofield-sciences-2015
Biofield Viewer
https://biofieldviewer.com/
GABRIEL IMAGING
https://www.youtube.com/watch?v=GJJKeVrVvRY
Kobayashi Lab - Biophotons
http://www.eis.tohtech.ac.jp/study/labs/kobayashi/BiophotonGalleryE.html
http://www.eis.tohtech.ac.jp/study/labs/kobayashi/NewScientistE.html
Kirlian Photography Documentary
https://www.youtube.com/watch?v=HlAo8XwYa58
MAKE
How to make a High Voltage Transformer
https://www.youtube.com/watch?v=O1ik7Tuqh0s
Easy SSTC, Slayer Exciter On Steroids!
https://www.commenthow.com/article/display/5263/0/Easy+SSTC%2C+Slayer+Exciter+On+Steroids%21
One of our builds
Code for the exciter
#include <avr/io.h> #include <avr/interrupt.h> #define DRIVEPIN 8 // digital output pin that the MOSFET driver is attached to const int analogInPin = A0; // analog input pin that the potentiometer is attached to int timer; long counter; int outputValue = 0; // value output to the PWM (analog out) int analogValue = 0; long myperiode = 0; void setup() { Serial.begin(115200); pinMode(DRIVEPIN, OUTPUT); cli(); // disable global interrupts pinMode(2, INPUT); // Enable Pin2 as input to interrupt EIMSK |= (1 << INT0); // Enable external interrupt INT0 (see table 13-2-2 in Atmel 328 spec) EICRA |= (1 << ISC01); // Trigger INT0 on rising edge (see table 13-1 in Atmel 328 spec) EICRA |= (1 << ISC00); // Trigger INT0 on riding edge (see table 13-1 in Atmel 328 spec) // initialize Timer1 // ZERO Timer1 TCCR1A = 0; // set entire TCCR1A register to 0 TCCR1B = 0; // same for TCCR1B // set compare match register to desired timer count: OCR1A = 7000; // turn on CTC mode: initial value changed in loop OCR1B = 14000; // turn on CTC mode: initial value changed in loop // TCCR1B |= (1 << WGM12); // set CTC mode. Resets the timer after compA has been reached TCCR1B |= (1 << CS10); // prescaler 1024 // TCCR1B |= (1 << CS11); // prescaler 1024 TIMSK1 |= (1 << OCIE1A); // enable timer compare interrupt: TIMSK1 |= (1 << OCIE1B); // enable timer compare interrupt: sei(); // enable global interrupts } void loop() { // read the analog in value: analogValue = analogRead(analogInPin); // map it to the range of the analog out: // print the results to the Serial Monitor: Serial.println(myperiode); myperiode = 500000/analogValue; OCR1A = myperiode; // turn on CTC mode:initial value changed in loop OCR1B = myperiode*2; // turn on CTC mode:initial value changed in loop delay(20); } ISR(TIMER1_COMPA_vect) { digitalWrite(DRIVEPIN, HIGH); counter= TCNT1; } ISR(TIMER1_COMPB_vect) { digitalWrite(DRIVEPIN, LOW); counter= TCNT1; TCNT1 = 0; // Reset Timer1 Count }
dusjagr's Plasma Mixtape
I should add that resistor and diode...
circuit description from here
ART PROJECT (in progress)
Emanation
https://www.merriam-webster.com/dictionary/emanation
Bioelectrography / electrophotonics / Kirlian photography / GDV cameras (Gas Discharge Visualisation)
spectroman.jpg
Schedule
Sunday: Meetup in Zurich (meet Marc, Alanna, Maya)
Monday - Wednesday: First Hacking
Wednesday: Lecture on Art&Science
Thursday - Friday: Research
Saturday: Public Science Show
Sunday: Chill Out
Flight Schedule Tez:
Arriving: Sun 31 March 2019, 11:05 Zurich
Departure: Sun 7 April 2019, 11:50 Zurich
People to contact:
- Tesla Chris
- ConnCept