Quelqu'un pourrait il m'expliquer une règle (simple si possible) de l'hyperfocale ?
J'ai bien fait des recherches sur le net, mais j'ai du mal à comprendre les exemples

Faut-il commencer par déterminer l'ouverture en priorité ? et ensuite ?
Merci
Oui, grande ouverture si tu veux une pronfondeur de champs courte et petite ouverture si tu veux une grande pronfondeur de champspat2904 a écrit :Il faut donc estimer l'ouverture en 1er ?
Code : Tout sélectionner
10: PRINT «1=Full Frame»
20: PRINT «2=APS-H»
30: PRINT «3=APS-C Nikon»
40: PRINT «4=Autres APS-C»
50: PRINT «5=Foveon»
60: PRINT «6=4 Tiers»
70: INPUT «Votre choix 1-6 ? »;CH
80: DIM T(6)
90: FOR I=1 TO 6
100: READ T(I)
110: NEXT I
120: DATA 0.00003,0.000024,0.00002,0.000019,0.000017,0.000015
130: C=T(CH)
140: INPUT « 1=Hyperfocale 2=Macro : » ; CH
150: INPUT «Focale (mm) : »;F
160: F=F/1000
170: ON CH GOSUB 1000,2000
180: GOTO 140
1000: INPUT «Ouverture : »;N
1010: INPUT «Distance sujet (m) : »;S
1020: H= INT (1000*F*F/(N*C))/1000
1030:DN= INT (1000*H*S/(H+S))/1000
1040:DF= INT (1000*H*S/(H-S))/1000
1050:SN= INT (1000*(S-DN))/1000
1060:SF= INT (1000*(DF-S))/1000
1070: PRINT «Hyperfocale : »;H;« M»
1080: PRINT «Premier plan net : »;DN;« M»
1090: PRINT «Arriere plan net : »;DF;« M»
1100: PRINT «Devant : »;SN;« M»
1110: PRINT «Derriere : »;SF;« M»
1120: RETURN
2000: INPUT « Plan avant (m) : » ;A
2010: INPUT « Plan arriere (m) : » ;R
2020: D=2*A*R/(A+R)
2030: N=F*(R-A)*1500/(2*R*A)
2040: PRINT «Distance MAP : »;D;« M»
2050: PRINT «Ouverture maxi : »;N
2060: RETURN