With ssh configured the Raspi can be attached using putty after booting. But how do I know about the IP the raspi got from DHCP? There are several possibilities to look: 1) If there is a screen attached at console the IP can be read there. But I operate the raspi in different networks just… Read More


After unpacking starting is very easy. There is a lot information available online. Here a few tipps where to look and what to do. A good choice is the raspberrypi homepage: Home What you first need is software to run the device. What you need is the Win32Diskmanager and an image to load. I started… Read More


To use functions in OpenCV like cvSmooth or cvAdaptiveThreshold you must have the data of your VideoCapture in an IplImage object. VideoCapture capture; Mat grayImage; IplImage *imgSrc, *imgResult; imgSrc = cvCreateImage(cvSize(640, 480), IPL_DEPTH_8U, 1); imgResult = cvCreateImage(cvSize(640, 480), IPL_DEPTH_8U, 1); capture.open(CV_CAP_OPENNI); if (!capture.isOpened()) { cout << "Can not open a capture object." << endl; return… Read More


I’ve search long time for having result on this problem. I want to use the object of IplImage, which data should be filled from Mat. If you using the simple solution found on stackoverflow, then you can’t access the methods of the IplImage object. Mat matImage; IplImage iplImage; iplImage = cvCreateImage(cvSize(640,480), IPL_DEPTH_8U, 1); iplImage->imageData =… Read More


My problem was to create a dynamic table and not hard xml-coded. So I’ve wrote a table class to create it programmatically. The created table has also borders. TableGenerator class public class TableGenerator { private final Context mContext; private TableLayout mTable; private TableLayout.LayoutParams rowParams = new TableLayout.LayoutParams(); private TableRow.LayoutParams colParams = new TableRow.LayoutParams(); public TableGenerator(Context… Read More


Lange habe ich gesucht, in Google mit den Wörtern „ListPreference SQLLite“ und bin immer auf sehr lange Beiträge gestoßen. Heute habe ich die Lösung gefunden, diese ist wie immer ganz einfach: Ich habe jetzt hier nur den Teil gepostet, in dem die dynamischen Items der ListPreference zugeordnet werden. addPreferencesFromResource(R.xml.app_preferences); ListPreference lp = (ListPreference)findPreference("favourite_day"); CharSequence[] entries… Read More


Um ein ImageView in Android zu drehen sind folgende Zeilen Code notwendig: public void rotate(Viev v) { ImageView ivRotate = (ImageView)(findViewById(R.id.ivRotate)); RotateAnimation aRotate = new RotateAnimation(0,180, ivRotate.getWidth() / 2, ivRotate.getHeight() / 2); aRotate.setDuration(3000); aRotate.setFillAfter(true); aRotate.setInterpolator(new LinearInterpolator()); ivRotate.startAnimation(aRotate); } In die Layout.xml (z.B. main.xml) muss noch folgendes eingefügt werden, um diese Funktion mit einem Button aufzurufen:… Read More


Beim Versuch eine als Release kompilierte DLL auf einem Rechner ohne Entwicklungsumgebung auszuführen kam es immer bei LoadLibrary("name.dll"); wieder zu dem Fehler 0x7e (Das angegebene Modul wurde nicht gefunden). Um dies zu beheben habe ich einfach mit dem dependency walker (http://www.dependencywalker.com) die DLL geöffnet und gesehen, dass die beiden Dateien msvcr100.dll und msvcr100d.dll fehlen. Mein… Read More


Ich habe ein existierendes Android Projekt auf einen anderen PC kopiert und dann folgede Fehlermeldung bekommen: Android requires compiler compliance level 5.0 or 6.0. Found ‚1.4‘ instead. Please use Android Tools > Fix Project Properties. Ist ja schön und gut, nur wo finde ich denn das Menü? Um dieses Problem zu Lösen einfach hier im… Read More


Will man Android Aplicationen programmieren, so muss man das ADT-Plugin in Eclipse nachladen. Dies geht indem man unter Help -> Install new Software die Url https://dl-ssl.google.com/android/eclipse/ eingibt. Setzt man den Haken vor Development Tools, und danach auf Next, so wird man sehr viel Zeit damit verbringen. Man kann unten lesen: Calculating requirements and dependencies und… Read More