Super-natural imaging

From Hackteria Wiki
Revision as of 14:03, 2 April 2019 by Gaudi (talk | contribs) (DIY Driver)
Jump to: navigation, search

FB IMG 1553630227608.jpg
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.
IMG 20190331 165432.jpg IMG 20190331 182741.jpg IMG 20190331 182832.jpg SUPERFACE2.jpg

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/

Kirlianscheme.png


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/

First DIY Kirlian Experiments

Money.JPG

PlasmaLeave1.JPG

PlasmaLeave2.JPG

SQUARE2TRANS.jpg

TRANS2COIL.jpg


Experiments with ITO Glass

Setup1.JPG

ElectronicsLighter.jpg

Fingers1.JPG

Fingers2.JPG

Glas2.JPG

DIY Driver

MacroLeafe.JPG

MacroCoin.JPG

SpectralKiril.jpg

MacroCoinClose.JPG


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


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 Scheidule Tez:
Arriving: Sun 31 March 2019, 11:05 Zurich
Departure: Sun 7 April 2019, 11:50 Zurich


People to contact: - Tesla Chris - ConnCept


Code:


#include <avr/io.h>
#include <avr/interrupt.h>
#define LEDPIN 13
#define DRIVEPIN 8

int timer;
long counter;

const int analogInPin = A0;  // Analog input pin that the potentiometer is attached to

int outputValue = 0;        // value output to the PWM (analog out)
int analogValue = 0;
long myperiode = 0;

void setup()
{
 Serial.begin(115200);
 pinMode(LEDPIN, OUTPUT);
 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:
myperiode=500000/analogValue;


 Serial.println(myperiode);

 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
}