voyager 1
Export Images in the Golden Disk
ボイジャー 1 号は、1977 年 9 月 5 日に NASA によって打ち上げられた宇宙探査機です。太陽系外縁部を研究するボイジャー プログラムの一環として、ボイジャー 1 号は双子のボイジャー 2 号の 16 日後に打ち上げられました。 --Wikipedia
このリポジトリには、Voyager Golden Record 上の画像データをデコードするための R# スクリプトに必要なコードが含まれています。
クレジット: テスト wav ファイル データとデコーダー アルゴリズム実装の一部は、プロジェクト リポジトリ: Voyager-Golden-Record-Decoder から取得されます。
以下は、goden レコードの最初の円イメージをデコードするためのR#
スクリプトの例です。
# R# "E:voyager-1Rscriptfirst-circle.R" --debug --ignore-missing-startup-packages
imports " voyager1 " from " voyager-1 " ;
imports " wav " from " signalKit " ;
const goldenRecord as string = " J: G oogleDrive V oyager 3 84kHzStereo.wav " ;
# A demo R# script for image decode from the goden record wave data
# this very first circle image on the goden record is used for
# parameter calibration of the image decoder
using wav as read.wav( file = file( goldenRecord ), lazy = TRUE ) {
# view of the raw file data summary;
print( wav );
# parameters of the first circle image
# and wav decoder arguments
let first_circle = new image.chunk( channel = " Left " , start = 6000208 , length = 1928181 );
let decoder = new decode( windowSize = 3400 , offset = 217 );
print( first_circle );
print( " data size of this image chunk: " );
print( wav : > chunk_size( chunk = first_circle ));
# run decoder and save the
# result image file
wav
: > decode( chunk = first_circle , decode = decoder )
: > as.bitmap( white = 1.125 )
: > bitmap( file = `${dirname(!script$dir)}/docs/circle.png` )
;
}
R# インタープリターを使用してデモ スクリプトを実行します。
デモ スクリプトは、wav データからデコードされた次のようなグレースケール イメージを出力する必要があります。
最後に、Photoshop で出力された結果画像を微調整して、より鮮明にすることができます。