Skip to main content

A solution of molestation in public buses due to heavy congestion.




Often I have noticed some disgusting men intentionally touch a woman in an inappropriate manner by taking advantage of the crowded bus, more than 90% cases are not reported and also woman usually ignores this harassment multiple time, they won’t revert back to the offenders due to fear of self-respect or thinking the touch as unintentional because of a fully packed bus. What I have perceived, the problem is not the crowded bus rather the person's poor mentality. Now changing their mentality is not in our hand but we can manage the system in a better way so that this can be avoided. If we closely observe, the crowd is randomly distributed in the buses men and women are shuffled together very badly for that chances of molestation get increases to a particular. Here I have given the schematic diagram of the traditional system in the crowded bus.


Now if we change the system little bit we can find a big difference, if we allotted two different gates to the different genders, we can almost solve the issues. As a result, even though buses are crowded enough than also genders are separated, no messed up together and we can get rid of from these issues. Here the schematic diagram of the proposed algorithm.

Here in this above figure women and men are enters the bus from two different gates. Interestingly no additional cost is required to implement this rather a strong mindset. One decision can save several sisters and mother.


                                                   SOME CLARIFICATION 

I want to clear myself; as molestation is concerned I am much worry about those fellows are standing in the bus.
 Here I depicted some schematic diagram of various situations:
Considered in every case seats of the bus with 25% reserved seats are already occupied. RED dots represent as Women, GREEN dots represents as Men and BROWN dots represents as bus operators. Also the ratio of men and woman as nearly 2:1.
IN IDEAL CASE
 

IN PRACTICAL CASE
Considering the practical condition, when the bus is fully congested, unfortunately the normal provision of boarding from the rear gate and alighting from the front gate is not followed. Peoples are meshed up together very badly.
                             
IN PRACTICAL CASE AND FOLLOWED THE RULE
                                                
If the somehow above rule is followed, even though the situation is more critical. It is very unlike for a particular person boarding like the above picture. Rather he does prefered to follow the shortest possible path and obviously safest path for a woman (in molestation consideration).


PROPOSED CASE
Despite of bus are packed-up, woman and men are not get separated even no physical barrier is present. Here we do not violate any rule of any reservation for any commuters.     
                                                        


Advantages;
As picture suggest the contact between men and woman are less so chances of getting molestation or harassment is also less.

Take less time taken to boarding and alighting.








Comments

  1. This comment has been removed by the author.

    ReplyDelete
  2. This comment has been removed by the author.

    ReplyDelete
  3. Feel free to contact
    dharambirpoddar@gmail.com
    or +91 9093821467

    ReplyDelete

Post a Comment

Popular posts from this blog

Image Identify using machine learning in Python.

#pip install imageai #pip install Tensorflow #pip install keras from  imageai.Prediction  import  ImagePrediction import  os from  keras.models  import  load_model Givenimage= "picc.jpg" execution_path=os.getcwd() #print(execution_path) prediction = ImagePrediction() prediction.setModelTypeAsSqueezeNet() prediction.setModelPath(os.path.join(execution_path,  "squeezenet_weights_tf_dim_ordering_tf_kernels.h5" )) prediction.loadModel() predictions, probabilities = prediction.predictImage(os.path.join(execution_path, Givenimage), result_count= 3  ) for  eachPrediction, eachProbability  in   zip (predictions, probabilities):      print (eachPrediction ,  " : "  , eachProbability)   Result: WARNING:tensorflow:11 out of the last 11 calls to <function Model.make_predict_function.<locals>.predict_function at 0x7f941e211598> tr...

How to make dice game by using LabVIEW?

8. Dice Game (Exercise) In a board game a pair of dice (one is 6 sided and the other is 12 sided) is rolled. You win when there is a matching number, or the sum of the numbers rolled is equal to 18. In this problem we would like to build a VI that will do the following: i) Rolls the pair of dice every 100ms and displays the numbers rolled ii) A digital indicator displays the number of times dice rolled iii) An LED glows when you win iv) A digital indicator displays the number of wins v) Program stops after exactly100 rolls.

Make a Translator using python?

CODE : pip install translate create a new script file eg. english in the same directory. from translate import Translator translator=Translator( to_lang = "hi" ) with open ( './english.txt' , 'r' ) as file2: text=file2.read() translation=translator.translate(text) print(translation) or another way  jj= str ( input ( 'enter th english' )) from translate import Translator translator=Translator( to_lang = "hi" ) with open ( './english.txt' , 'w' ) as file2: file2.write( f'-- { jj } ' ) with open ( './english.txt' , 'r' ) as file2: text = file2.read() translation=translator.translate(text) print (translation) DEMO: