filmisalive – Luigi Barbano Photography https://www.barbano.barbanollc.com Photography and Marketing since 1994 Wed, 28 Sep 2022 14:07:07 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 What if Artificial Intelligence… https://www.barbano.barbanollc.com/2022/09/what-if-artificial-intelligence/ Wed, 28 Sep 2022 14:07:06 +0000 http://barbano.com/?p=2531 What if Artificial Intelligence…

…is already creating art and most of what we see in the Web and on social media is the digital equivalent of the famous Artist’s Shit by Piero Manzoni?

Just kidding, but after I made the video you can check here, where I talk about the new trend of AI creating photography, this idea came to my mind… what if? lol

Let me know what you think about the use of AI in the creation of art!

Continue reading What if Artificial Intelligence… at Luigi Barbano Photography.

]]>
…is already creating art and most of what we see in the Web and on social media is the digital equivalent of the famous Artist’s Shit by Piero Manzoni?

Just kidding, but after I made the video you can check here, where I talk about the new trend of AI creating photography, this idea came to my mind… what if? lol

Let me know what you think about the use of AI in the creation of art!

]]>
DIY UV Box Tested! https://www.barbano.barbanollc.com/2022/05/diy-uv-box-tested/ Mon, 23 May 2022 13:43:13 +0000 http://barbano.com/?p=2524 DIY UV Box Tested!

It passed quite a while since I built my UV Box but sometime life gets in the middle of our fun projects! Now finally I tested the UV Box and I can say it works great.

.

.

I made a test with two different negatives: a very soft flower subject lighted with painted light and a very sharp subject lighted with a very contrasted light. I wanted to see how this printing process deals with different subjects.

Continue reading DIY UV Box Tested! at Luigi Barbano Photography.

]]>
It passed quite a while since I built my UV Box but sometime life gets in the middle of our fun projects! Now finally I tested the UV Box and I can say it works great.

.

.

I made a test with two different negatives: a very soft flower subject lighted with painted light and a very sharp subject lighted with a very contrasted light. I wanted to see how this printing process deals with different subjects.

I proceeded with some step test to find the corrected exposure for my negatives. I did 2 seconds steps and as you can see in the video I was a little optimist with my first strip of 2,4,6,8 seconds exposure. At the end the correct exposure resulted of 11 minutes.

.

You can see the tests I made in the video below.

I was expecting shorter exposure times ’cause I seen some other boxes made with the same LED giving short exposure times with other alternative processes.

Still I like the slow times when I work with film and so I kinda like to have time to think while I wait for the paper to be exposed.

The Arduino timer is working greatly and it’s a pleasure to use this box!

.

.

I have to learn to pose the emulsion better on the paper. The thickness came out not uniform and there are spots where the emulsion did not spread at all on the paper. Still I have a lot to learn but as a fist try I’m quite satisfied of the results.

The LabOldTech2000 kit is very easy to use and complete.

See you next time with new projects!

]]>
Luigi’s Drunk UV Box! https://www.barbano.barbanollc.com/2022/02/luigis-drunk-uv-box/ Thu, 10 Feb 2022 10:41:21 +0000 http://barbano.com/?p=2510 Luigi’s Drunk UV Box!

I was always told: if you have to do something, do it with your own style! So here my Italian style UV box to expose the papers coated with antique photographic processes.

At the origin of photography many technologies of printing required the exposure in UV light. At those time sun was the perfect source and the exposure was usually made outdoor. The quantity of UV light from the sun can vary a lot in different seasons or with different weather, plus, baby it’s cold outside now in winter!

Continue reading Luigi’s Drunk UV Box! at Luigi Barbano Photography.

]]>
I was always told: if you have to do something, do it with your own style! So here my Italian style UV box to expose the papers coated with antique photographic processes.

At the origin of photography many technologies of printing required the exposure in UV light. At those time sun was the perfect source and the exposure was usually made outdoor. The quantity of UV light from the sun can vary a lot in different seasons or with different weather, plus, baby it’s cold outside now in winter! For this reason I decided to build a UV Box.

I was inspired by some similar projects videos on YouTube but I added a personal touch.

First of all I used an old wood box for wine bottles instead of a modern plastic box. The wood box was in my cellar, free, and wood looks better and more coherent than plastic with old techniques.

Second I decided to add a timer for a precise exposure instead of counting the seconds with an external timer and manually switch the lights on and off.

.

.

Check out the video to know more about the UV Box and see how it works.

.

I used very common components easy to buy online:

LED stripes: BTF-LIGHTING UV Black Light 5m 300 LED Strips, 5050SMD Ultraviolet 395nm-405nm

Arduino Nano

Arduino Display 1602A

Buttons: GUUZI 12mm

Switches: GUUZI 12mm, 16mm

LED: GUUZI 12V-24V 12mm LED

Power: MeanWell LRS-150-12 150W DC 12V IP20

5V Power: Greluma DC 12v 24v to 5v Step Down Converter 5A 25W

The 5V are derived from the 12V Power Supply with the Stepdown Converter.
The relays are on the 12V power supply going to the LED stripes and have the green LED in parallel.

.

Here is the scheme of the circuit:

.

Here the program I wrote for the timer:

#include <LiquidCrystal.h>
#include "Countimer.h"
#include <EEPROM.h>
Countimer tdown;
LiquidCrystal lcd(2, 3, 4, 5, 6, 7);


#define bt_set    A0
#define bt_up     A1
#define bt_down   A2
#define bt_start  A3
#define bt_full   A4
#define LCD_CONTRAST_PIN 11
#define relON LOW
#define relOFF HIGH

int time_s = 0;
int time_m = 0;
int time_h = 0;
int set = 0;
int flag1=0, flag2=0;
int relay = 8;
int relay2 = 9;
int buzzer = A5;
int power = 0;
int contrast = 0;


void setup() {
Serial.begin (9600);
//set some defaults


pinMode(bt_set,   INPUT_PULLUP);
pinMode(bt_up,    INPUT_PULLUP);
pinMode(bt_down,  INPUT_PULLUP);
pinMode(bt_start, INPUT_PULLUP);
pinMode(bt_full,  INPUT_PULLUP);

pinMode(relay, OUTPUT);
pinMode(relay2, OUTPUT);
pinMode(buzzer, OUTPUT);

lcd.begin(16, 2);
analogWrite(LCD_CONTRAST_PIN, contrast); //set some contrast
lcd.clear();
lcd.setCursor(0,0);
lcd.print("   Welcome To   ");
lcd.setCursor(0,1);
lcd.print(" LB's Drunk UV Box ");
tdown.setInterval(print_time, 999);
eeprom_read();
delay(4000);
lcd.clear();
}

void print_time(){
time_s = time_s-1;
if(time_s<0){time_s=59; time_m = time_m-1;}
if(time_m<0){time_m=59; time_h = time_h-1;}
}

void tdownComplete(){
  lcd.setCursor(0,1);
  lcd.print("  Done  ");
  delay(3000);
  lcd.clear();}
 

void loop(){
tdown.run();

//read power
if(digitalRead (bt_full) == 0){power=1;}
if(digitalRead (bt_full) == 1){power=0;}

if(digitalRead (bt_set) == 0){
if(flag1==0 && flag2==0){flag1=1;
set = set+1;
if(set>4){set=0;}
delay(100); 
}
}else{flag1=0;}

if(digitalRead (bt_up) == 0){
if(set==0){tdown.start(); flag2=1;}
if(set==1){time_s++;}
if(set==2){time_m++;}
if(set==3){time_h++;}
if(set==4){ if(contrast < 254){contrast=contrast+1; analogWrite(LCD_CONTRAST_PIN, contrast);} if (contrast >= 254){contrast=254;};}
if(time_s>59){time_s=0;}
if(time_m>59){time_m=0;}
if(time_h>99){time_h=0;}
if(set>0){eeprom_write();} //EEPROM.write(addrCon, contrast); EEPROM.write(addrLum, luminosity);
delay(200); 
}

if(digitalRead (bt_down) == 0){
if(set==0){tdown.stop(); flag2=0;}
if(set==1){time_s--;}
if(set==2){time_m--;}
if(set==3){time_h--;}
if(set==4){ if(contrast > 0){contrast=contrast-1; analogWrite(LCD_CONTRAST_PIN, contrast);} if (contrast <= 0){contrast=0;};}
if(time_s<0){time_s=59;}
if(time_m<0){time_m=59;}
if(time_h<0){time_h=99;}
if(set>0){eeprom_write();} // EEPROM.write(addrCon, contrast); EEPROM.write(addrLum, luminosity);
delay(200); 
}

if(digitalRead (bt_start) == 0)
  {if(set==0){{ flag2=1; 
  eeprom_read(); 
  if(power == 0){
  digitalWrite(relay, relON);
  digitalWrite(relay2, relOFF);}
else {
   digitalWrite(relay, relON);
   digitalWrite(relay2, relON);}

  tdown.restart(); 
  tdown.start();
}}
  else {set=0;
  }
}


lcd.setCursor(0,0);
if(set==0){
  if(power==1){lcd.print("PW full    Timer");}
  if(power==0){lcd.print("PW half    Timer");}
}
if(set==1){lcd.print("  Set Timer SS  ");}
if(set==2){lcd.print("  Set Timer MM  ");}
if(set==3){lcd.print("  Set Timer HH  ");}
if(set==4){lcd.print("  Contrast:  " + String(contrast)+"  ");}
lcd.setCursor(8,1);
if(time_h<=9){lcd.print("0");}
lcd.print(time_h);
lcd.print(":");
if(time_m<=9){lcd.print("0");}
lcd.print(time_m);
lcd.print(":");
if(time_s<=9){lcd.print("0");}
lcd.print(time_s);
lcd.print("   ");

if(time_s==0 && time_m==0 && time_h==0 && flag2==1){flag2=0;
tdown.stop(); 
digitalWrite(relay, relOFF);
digitalWrite(relay2, relOFF);
digitalWrite(buzzer, HIGH);
delay(300);
digitalWrite(buzzer, LOW);
delay(200);
digitalWrite(buzzer, HIGH);
delay(300);
digitalWrite(buzzer, LOW);
delay(200);
digitalWrite(buzzer, HIGH);
delay(300);
digitalWrite(buzzer, LOW);
tdownComplete();
eeprom_read();
}

if(flag2==1){
    if (power == 1){digitalWrite (relay, relON); digitalWrite(relay2, relON);}
    else {digitalWrite (relay, relON); digitalWrite(relay2, relOFF);}
    }
else{digitalWrite(relay, relOFF);
     digitalWrite(relay2, relOFF);}

delay(1);
}

void eeprom_write(){
EEPROM.write(1, time_s);  
EEPROM.write(2, time_m);  
EEPROM.write(3, time_h);  
}

void eeprom_read(){
time_s =  EEPROM.read(1);
time_m =  EEPROM.read(2);
time_h =  EEPROM.read(3);
}

.

As you see it is easy to build, it just requires some electronic/programming skills and a lot of patience. Buying a full 6 bottles box and drink them during the building can help the morale, I’m not sure about the results!

]]>
5 Steps to PROPERLY start with film photography https://www.barbano.barbanollc.com/2020/10/5-steps-to-properly-start-with-film-photography/ Thu, 08 Oct 2020 21:14:14 +0000 http://www.barbano.com/?p=2340 5 Steps to PROPERLY start with film photography

Lately I made many videos talking about film photography and equipment. Thanks to that I had been asked, mostly by millenials, how to start with film photography.

Here my answer. It is a little provocation but is exactly what I think.

.

.

Let me know what you think.

Continue reading 5 Steps to PROPERLY start with film photography at Luigi Barbano Photography.

]]>
Lately I made many videos talking about film photography and equipment. Thanks to that I had been asked, mostly by millenials, how to start with film photography.

Here my answer. It is a little provocation but is exactly what I think.

.

.

Let me know what you think.

]]>
Gear Talk: Holga 120S https://www.barbano.barbanollc.com/2020/10/gear-talk-holga-120s/ Fri, 02 Oct 2020 16:27:28 +0000 http://www.barbano.com/?p=2322 Gear Talk: Holga 120S

Sometime a cheap plastic camera can be a lot of fun. This camera has character created by all the defects of a cheap camera put together!

.

.

Here some images taken with Ilford HP5 and developer in Ilfotec HC. Click on them to enlarge.

.

.

See you next time… perhaps with a little more serious camera!

Continue reading Gear Talk: Holga 120S at Luigi Barbano Photography.

]]>
Sometime a cheap plastic camera can be a lot of fun. This camera has character created by all the defects of a cheap camera put together!

.

.

Here some images taken with Ilford HP5 and developer in Ilfotec HC. Click on them to enlarge.

.

.

See you next time… perhaps with a little more serious camera!

]]>
It’s not just that I’m an old dinosaur… https://www.barbano.barbanollc.com/2020/09/its-not-just-that-im-an-old-dinosaur/ Thu, 24 Sep 2020 15:04:17 +0000 http://www.barbano.com/?p=2309 It’s not just that I’m an old dinosaur…

I had been asked many times why I still use film for some of my projects. Sometime the fact that I’m an old dinosaur was implied, but is not just that.

The fact is that I really like film photography for many reasons and not just for the better aesthetic for some situations.

Here my main ten reasons, you can read just the titles or you can open the video below and hear the complete explanation I give:

  • It’s simple
  • Better learning curve
  • More control
  • Film means reality
  • Visible without tools
  • Variety of formats and cameras
  • Aesthetic
  • Value
  • It’s a slow process
  • It’s analogue!

Continue reading It’s not just that I’m an old dinosaur… at Luigi Barbano Photography.

]]>
I had been asked many times why I still use film for some of my projects. Sometime the fact that I’m an old dinosaur was implied, but is not just that.

The fact is that I really like film photography for many reasons and not just for the better aesthetic for some situations.

Here my main ten reasons, you can read just the titles or you can open the video below and hear the complete explanation I give:

  • It’s simple
  • Better learning curve
  • More control
  • Film means reality
  • Visible without tools
  • Variety of formats and cameras
  • Aesthetic
  • Value
  • It’s a slow process
  • It’s analogue!

If you want to see a comparison between film and digital, you can read a couple of articles I wrote some time ago:

Digital Fuji Acros vs Ilford FP4 Film

Fuji Acros Digital vs Fuji Acros Film

Until the next time!

]]>
Gear Talk: Minox 35GT https://www.barbano.barbanollc.com/2020/09/gear-talk-minox-35gt/ Thu, 17 Sep 2020 14:43:50 +0000 http://www.barbano.com/?p=2291 Gear Talk: Minox 35GT

After my last video about the huge Pentax 67 I had some jokes, on social media, about the size of the camera and the probable need for compensation for other attributes.

Being an Italian and having to defend an entire tradition and culture, I evaluated various options. At the end I decided to talk about another camera I use so I can recreate an equilibrium!

Ok, just kidding but I decided to talk about the Minox 35GT because is a fantastic camera and has an opposite philosophy to the medium and large format cameras I mostly use.

Continue reading Gear Talk: Minox 35GT at Luigi Barbano Photography.

]]>
After my last video about the huge Pentax 67 I had some jokes, on social media, about the size of the camera and the probable need for compensation for other attributes.

Being an Italian and having to defend an entire tradition and culture, I evaluated various options. At the end I decided to talk about another camera I use so I can recreate an equilibrium!

Ok, just kidding but I decided to talk about the Minox 35GT because is a fantastic camera and has an opposite philosophy to the medium and large format cameras I mostly use.

.

.

Here a couple of example of images enlarged from the original 21.6″x30.8″ at 360 DPI. Click on the details to see them at original size.

.

50% Detail

.

100% Detail

.

100% detail

As you can see the sharpness is pretty impressive. In the last example is easy to read the incision on the statue also if the light condition is not the best, being the incision in the dark shadow.

See you for the next review!

]]>
Gear Talk: Pentax MZ-S https://www.barbano.barbanollc.com/2020/08/gear-talk-pentax-mz-s/ Mon, 24 Aug 2020 22:05:59 +0000 http://www.barbano.com/?p=2179 Gear Talk: Pentax MZ-S

In my opinion one of the greatest camera of the autofocus era. I simply loved this camera and used it a lot professionally.

.

.

More cameras to come, stay tuned!

Continue reading Gear Talk: Pentax MZ-S at Luigi Barbano Photography.

]]>
In my opinion one of the greatest camera of the autofocus era. I simply loved this camera and used it a lot professionally.

.

.

More cameras to come, stay tuned!

]]>
Gear Talk: Pentax PZ-1p & Z-1p https://www.barbano.barbanollc.com/2020/08/gear-talk-pentax-pz-1p-z-1p/ Mon, 24 Aug 2020 21:58:09 +0000 http://www.barbano.com/?p=2175 Gear Talk: Pentax PZ-1p & Z-1p

Another very good camera by Pentax.

.

.

Stay tuned for more camera reviews!

Continue reading Gear Talk: Pentax PZ-1p & Z-1p at Luigi Barbano Photography.

]]>
Another very good camera by Pentax.

.

.

Stay tuned for more camera reviews!

]]>
Gear Talk: Pentax K1000 https://www.barbano.barbanollc.com/2020/08/gear-talk-pentax-k1000/ Sun, 23 Aug 2020 23:06:53 +0000 http://www.barbano.com/?p=2172 Gear Talk: Pentax K1000

Ok… I know… a lot of people will hate me for this…

Pentax K1000, a great cheap camera at that times… a very overpriced camera on the used market!

.

.

I promise, next time some camera I love more…

Continue reading Gear Talk: Pentax K1000 at Luigi Barbano Photography.

]]>
Ok… I know… a lot of people will hate me for this…

Pentax K1000, a great cheap camera at that times… a very overpriced camera on the used market!

.

.

I promise, next time some camera I love more…

]]>