Here comes the new update of my AiBO+ AIBOWare for Sony ERS-7: AiBO+ 3.1 - Let's Play!
New changes in this release:
- New sound profiles with voice acting (text-to-speech, Marissa, Gillian)
- A game can be played with AIBO
- Reworked pick-up mode/fall over/poking detection
- Configurable adaptive volume control
- Quicker responses for petting
- Less stress on the motors
- Many small fixes
The AiBO+ AIBOWare must be installed in a PMS stick and an AiBO+ Client application can be run under Windows, Ubuntu Linux and Android.
The installation instructions and a detailed user guide are available on this page:
http://aiboplus.sourceforge.net/userguide.html
2015. augusztus 6., csütörtök
2015. augusztus 3., hétfő
Second astrophoto - Shapley 1
Shapley 1 (planetary nebula)
Captured with telescope T32 of iTelescope network, Side Springs Observatory, Australia.
Capture parameters: LRGB, 14x120, 4x120, 4x120, 4x120.
It is my second trial with astroimaging. I was a bit surprised that I got better results when I tried to work with uncalibrated images. I tried various filters, but none of them given reasonable results with shutter speed 300 seconds.
Captured with telescope T32 of iTelescope network, Side Springs Observatory, Australia.
Capture parameters: LRGB, 14x120, 4x120, 4x120, 4x120.
It is my second trial with astroimaging. I was a bit surprised that I got better results when I tried to work with uncalibrated images. I tried various filters, but none of them given reasonable results with shutter speed 300 seconds.
2015. május 24., vasárnap
Conversion script for FujiFilm FinePix W3 3D camera videos (avi) to SBS mp4 under Linux
When the following script is run, it looks for avi files in the current folder whose name starts with DSC... and their format is motions jpeg.
The left/right channels of the original W3 video are extracted and a final side-by-side video is created. All new videos will be in mp4 format.
Here it is the script:
#!/bin/bash
file_pattern="$@"
if [ ! $file_pattern ]; then
file_pattern="DSC*.avi DSC*.AVI"
fi
for file in $(ls -f $file_pattern 2> /dev/null)
do
echo Checking $file
if [[ "$(file $file)" == *"video: Motion JPEG"* ]]; then
echo Processing $file
filenamebase=${file%.*}
echo Create left video: "$filenamebase"_l.mp4
ffmpeg -loglevel error -i $file -f mp4 -acodec mp3 -map 0:v:1 -map 0:a:0 "$filenamebase"_l.mp4
echo Create right video: "$filenamebase"_r.mp4
ffmpeg -loglevel error -i $file -f mp4 -acodec mp3 -map 0:v:0 -map 0:a:0 "$filenamebase"_r.mp4
echo Join left/right videos to a half SBS video: "$filenamebase"_sbs.mp4
ffmpeg -loglevel error -i "$filenamebase"_l.mp4 -i "$filenamebase"_r.mp4 \
-filter_complex "pad=in_w*2:in_h, overlay=main_w/2:0, scale=in_w/2:in_h" \
-f mp4 -b:v 6000k -acodec copy -map 0:a:0 "$filenamebase"_sbs.mp4
echo Rename left video to 2d version: "$filenamebase"_l.mp4 to "$filenamebase"_2d.mp4
mv "$filenamebase"_l.mp4 "$filenamebase"_2d.mp4
fi
done
The left/right channels of the original W3 video are extracted and a final side-by-side video is created. All new videos will be in mp4 format.
Here it is the script:
#!/bin/bash
file_pattern="$@"
if [ ! $file_pattern ]; then
file_pattern="DSC*.avi DSC*.AVI"
fi
for file in $(ls -f $file_pattern 2> /dev/null)
do
echo Checking $file
if [[ "$(file $file)" == *"video: Motion JPEG"* ]]; then
echo Processing $file
filenamebase=${file%.*}
echo Create left video: "$filenamebase"_l.mp4
ffmpeg -loglevel error -i $file -f mp4 -acodec mp3 -map 0:v:1 -map 0:a:0 "$filenamebase"_l.mp4
echo Create right video: "$filenamebase"_r.mp4
ffmpeg -loglevel error -i $file -f mp4 -acodec mp3 -map 0:v:0 -map 0:a:0 "$filenamebase"_r.mp4
echo Join left/right videos to a half SBS video: "$filenamebase"_sbs.mp4
ffmpeg -loglevel error -i "$filenamebase"_l.mp4 -i "$filenamebase"_r.mp4 \
-filter_complex "pad=in_w*2:in_h, overlay=main_w/2:0, scale=in_w/2:in_h" \
-f mp4 -b:v 6000k -acodec copy -map 0:a:0 "$filenamebase"_sbs.mp4
echo Rename left video to 2d version: "$filenamebase"_l.mp4 to "$filenamebase"_2d.mp4
mv "$filenamebase"_l.mp4 "$filenamebase"_2d.mp4
fi
done
2015. április 26., vasárnap
First public release of my artificial intelligence for Sony ERS-7 robot dogs
After years of development, I created the first public version of my AiBO+ AIBOWare for Sony ERS-7:
AiBO+ 3.0 - AIBO Rebirth release.
A feature video can be watched:
The same video in 3D:
AiBO+ has the following capabilities at the moment:
- Basic postures: sit, stand, lie.
- Locomotion (walking, turning).
- A new, compatible Skitter is bundled. (thanks to DogsBody)
- Avoiding near objects or deepness (e.g a stairway).
- Basic emotions: happy, angry.
- Recognizing the floor surface while walking.
- Crowdsourcing scientific data (machine learning samples).
- Adaptive LED brightness levels.
- Adaptive volume level according to the time of the day.
- Turning over if the robot is upside down.
The AiBO+ AIBOWare must be installed in a PMS stick and an AiBO+ Client application can be run under Windows, Ubuntu Linux and Android.
The installation instructions and a detailed user guide are available on this page:
http://aiboplus.sourceforge.net/userguide.html
A feature video can be watched:
The same video in 3D:
AiBO+ has the following capabilities at the moment:
- Basic postures: sit, stand, lie.
- Locomotion (walking, turning).
- A new, compatible Skitter is bundled. (thanks to DogsBody)
- Avoiding near objects or deepness (e.g a stairway).
- Basic emotions: happy, angry.
- Recognizing the floor surface while walking.
- Crowdsourcing scientific data (machine learning samples).
- Adaptive LED brightness levels.
- Adaptive volume level according to the time of the day.
- Turning over if the robot is upside down.
The AiBO+ AIBOWare must be installed in a PMS stick and an AiBO+ Client application can be run under Windows, Ubuntu Linux and Android.
The installation instructions and a detailed user guide are available on this page:
http://aiboplus.sourceforge.net/userguide.html
2014. szeptember 26., péntek
Sony ERS-7 charging station pole model for 3D printing
After collaborating with Ahmad Byagowi from aibo-life.org,
he created a model of the ERS-7 charging station pole what can be used
for 3d printing. I played a little role in the whole process, Ahmad
desires all praises.
- Model for 3d printing service:
https://www.dropbox.com/s/wyn5k7asyjtggvw/pole.STL?dl=0
- An exported pdf document where the model in 3d:
https://www.dropbox.com/s/r6p2snf2diwy8wu/pole.pdf?dl=0
- Model for 3d printing service:
https://www.dropbox.com/s/wyn5k7asyjtggvw/pole.STL?dl=0
- An exported pdf document where the model in 3d:
https://www.dropbox.com/s/r6p2snf2diwy8wu/pole.pdf?dl=0
2014. szeptember 11., csütörtök
Hold Tamperében tegnap éjjel / Moon in Tampere yesterday night
Vettem egy Skywatcher 650/130-as FlexTube Dobson teleszkópot, és tegnap végre derült volt az ég tehát felavattam. :) Sajnos a levegő nagyon párás volt és Tampere is eléggé fényszennyezett, de azért láttam sok pici csillagot. A Holdról készítettem egy képet a kínai telóm hipergagyi kamerájával. Így nézett ki tegnap éjjel, persze távcsővel tűéles volt a kép, meg rá is lehetett közelíteni.
-----------------------------------
I bought a Skywatcher 650/130 FlexTube Dobson telescope and I went for stargazing last night. Unfortunately, the seeing was not good at all and the air was filled with humidity, but I could see a lot stars despite the lightpolluting Tampere. I captured an image from the Moon with my crap Chinese phone, of course, it was crisp clear in the telescope and I could zoom in.
-----------------------------------
I bought a Skywatcher 650/130 FlexTube Dobson telescope and I went for stargazing last night. Unfortunately, the seeing was not good at all and the air was filled with humidity, but I could see a lot stars despite the lightpolluting Tampere. I captured an image from the Moon with my crap Chinese phone, of course, it was crisp clear in the telescope and I could zoom in.
2014. július 17., csütörtök
Feliratkozás:
Bejegyzések (Atom)
