Wednesday, December 6, 2017

One of my most useful phases of life - Parenting, Teaching...

Monday, May 8, 2017

Change Management in Software Skill...

1960's till '80 saw the birth of programming languages like COBOL, PASCAL, C, PROLOG, SQL, BASIC, SMALLTALK. Then came '80s and a paradigm shift occurred and we got Object Oriented Technology and saw the birth of C++, Objective C, etc. Then came '90s and the age of internet started. New programming languages like Java, R, Haskel, Python, Javascript came in the horizon. Then 2000s came and support for concurrent programming, distributed programming, meta programming and aspect oriented programming became essential and we got languages like C#, SCALA, Go, DART, SWIFT. In the meantime people like me who started their IT journey with C++, VC++, MFC, VB on Windows platform had to realign their skillsets to match the market demand and started working on Mobility, Cloud etc. Now another shift in the market demand will see the rise in technologists working on AI, Computer Vision, IOT, Industrial IOT, predictive analytics and so on. So you see for an IT engineer there is no time to rest... He has to upskill himself continuously or else he will become obsolete... Its not easy but thats what the market demands... No wonder IT people in India who are in the age bracket of 40-55 and probably started their IT career on Windows based desktop applications and could not float well with the everchanging IT skills are feeling the heat now... The kind of job profile these people have is sometimes more managerial and people management than playing with technology... Naturally we are experiencing the massive job cuts for these category of people... Without the proper social support it will be really difficult...

We will also have to see if our academic institutions are capable of handling this change management... I am not sure but when i last saw the question papaer of GATE exmas of CS in 2011, it mainly concentrated on procedural language like C. Even when i train undergraduate students, they say they are becoming master in C to qualify the GATE exam. I know C is omnipresent but with the change in the IT scenario other aspects of software designing using Object Oriented Programming or Aspect oriented Programming should also take a major part in the question paper... The reason is that the students will mostly use languages other than C for their day-to-day work in the industry...

I may be wrong but this is my observation vis-a-vis the current IT scene of India...  

Thursday, March 16, 2017

Use of Gaussian Filter to remove noise from Image


I am on the path of upskilling  myself. Hence have started learning about Machine Learning, Computer Vision, Artificial Intelligence and all other related things. Here are the two videos that i did while learning Computer Vision. The first is experimenting the use of Gaussian Filter to remove noise using Octave. And the second is using the same principle but in the Android environment using OpenCV.

https://www.youtube.com/watch?v=dyczVYQOcFQ


https://www.youtube.com/watch?v=N0JJyl-78LQ


The code for Android which is responsible for showing the Noisy Image and the Clear Image (after applying Gaussian Filter) is as follow:


        if(view.equals(mBtnShowNoisyImage)){
                Bitmap bmp = BitmapFactory.decodeResource(getApplicationContext().getResources(),R.drawable.e);
                mImageView.setImageBitmap(bmp);
        }

        if(view.equals(mButtonShowClearImage)){
            Mat m = null;
            try {
                m = Utils.loadResource(getApplicationContext(), R.drawable.e);
            } catch (IOException e) {
                e.printStackTrace();
            }

            Size s = new Size(7,7);
           
           //Apply Gaussian Filter
            Imgproc.GaussianBlur(m, m, s, 2);
            double width = m.size().width;
            double height = m.size().height;

            Bitmap bmp = Bitmap.createBitmap((int)width, (int)height, Bitmap.Config.ARGB_8888);
            Utils.matToBitmap(m,bmp);

            mImageView.setImageBitmap(bmp);

        }
    }

Its a whole new experience that i am going through. Its more than just programming...


Thursday, February 9, 2017

Evolution of a Software Engineer coming from a different engineering background...

When i look at my progress as a software developer who came into this world from a different engineering background, i clearly see few major stages of learning process and i think many of the engineers who came into software from a background other than CS would agree to it... First i had to learn the concepts of programming language... And mind it, had it been procedural languages of earlier days, it would have been one story... But with the advent of OOAD the whole ballgame of learning programming concept had changed... To work independently i not only had to master the syntactical parts of the languages like C++ or Java but also the concepts of OOPS... Here i had to learn from varied parts of a language starting from VTBLE in C++ to inheritance concepts to alignment in memory of an user defined data type and data structure... And believe me its not easy... It took years to master only this part of the learning curve...Then i had to master subjects like UML and Design Pattern to wisely apply my OOAD knowledge for a practical purpose... And again it took a lot of perseverance to do this... Then i had to know about a OOPS framework and figure out where my OOPS knowledge may fit... For me i started my software journey with the Microsoft MFC/VC++ framework...

However this was just the beginning... After learning the nitty gritty of a language, and by nitty gritty i mean even understanding the compilation error, i had to delve into the world of OS and had to pick up the real CS areas like threads, process, multithreaded application, thread synchronization, scheduler and other concepts... And then i became a little useful in the real software developement...

In the meantime, i wanted to foray into a specific domain like mobile domain, and for that i had to constantly search for what is going on in this space... it was not easy to mix up the telecommunication part of the industry with the software that drives that telecommunication world... i never got a chance to go into the core telecom side of the software and their management but i was lucky enough to be a part of the mobile apps world... And even after coming into the mobile world i had to switch over from a Symbian C++ engineer to an Android/Java engineer... And to learn Android at a basic minimal level i had to burn lot of midnight oil in front of Google to decipher the Android framework code like the Android service internals, Android mediaplayer framework or Android Asynctask nitty gritty etc... It took lot of patience and perseverance to master only a little portion of Android...

I have learnt lot of things by standing on the shoulders of Giant like Google. I always suggest my students that to learn real software, they need to dig into the source code of different frameworks. For example, when i started going through the GoF design pattern book back in 2004, i used to delve into the MFC/VC++ source code to figure out the implementation of different design pattern. Thus i learnt how the Doc-View architecture resembles to the Observer Pattern. Or when i dug into the MFC's command routing source code and initially thought that its an example of Command Pattern because the term Command Routing, but then i figured out that its just an example of Chain of Responsibility design pattern. And believe me, when a software engineer understands these design sides of a framework, his joy is no less than that of a scientist.

Let me give you another example. When i started my journey in Symbian C++/S60 framework, all the Symbian books used to describe about the Active Object. But i never got the idea exactly how this whole thing is working although i was aware of Asynchronous ans Synchronous programming concept. Then in USA at NOKIA i got some time to dig into this part of Symbian S60 framework and figured out that in the Client-Server architecture, when the server finishes the task handled over to it by the client, it notifies the client through an InterProcess communication message passing system(actually the function is called Complete and this belongs to the RMessage2 class of Symbian/S60 framework), the whole thing became absolutely clear to me.

And in recent times (not exactly recent but in 2013) when i dug into the source code of Asynctask of Android and analysed the SerialExecutor function, the whole concept of Asynctask became clear to me. I am saying all these things to convey the message that to learn real software one has to look into the source code and analyze it.

And these days when i am upskilling myself with the knowledge of Aritificial Intelligence, Machine Learning, Computer Vision and related subjects, i am again going through the old engineering concepts of mathematics and statistics like Matrices, bell curve, Gaussian noise, Gaussian filter, Gradient Descent Algorithm and so many things... However this is just the tip of the iceberg vis-a-vis Computer Vision and AI... i know i have to go a long way to be useful in this world of computation... But frankly speaking the real joy of learning has started... i no longer worry about the programming syntax, but the real picture of the end technology...

Tuesday, January 24, 2017

Callback using Function Pointer (in C), interface (in Java) and EventListener pattern



Studying the android framework code as a research project to understand the practical usage of the above discussion

Please have a look at the video below from 17:00 mins, and you will be astonished to see exactly how this Event Listener design pattern has been used in the Android UI framework to implement the UI event handler.

Enjoy...

Happy learning...



Tuesday, January 10, 2017

Copy-on-Write