Resurrection to Zenith--Starting from JAVA

                                 Resurrection to Zenith--Starting from JAVA

                                                FOREWORD
Introduce myself first: I am a fresher with no girlfriends in Central South University, majoring in Electric Information, serving as Vice Grade President. playing the piano is my cup of tea. And going to gym is my cup of coffee, since I am longing to be muscular and protect my pocket money from being plundered frequently.
Next, I should talk about my personalities. Well, it is hard to say. Scrupulous, conscientious, benevolent and innocent are the words others describe me. But I do not consider them special enough as idiosyncrasies. What I reckon myself is that if you have intercourse with me, you can feel my altruistic love, even universal love for all the mankind(oh, that is  a little exaggerated, but you can still feel I am amiable.)
Actually, this is my first time writing a blog, since I thought it was a waste time before. However, now it automatically becomes a record of my progressively improved skills and a good way to express my heart.
        

                                                    Text
      A few months before, when the sun just freed itself from clouds, I found myself downtown drinking coffee alone, watching a TV program --The Apprentice. The show starts with sixteen business people competing in an elimination-style competition. The champaign will get the chance to be a apprentice of Donald Trump, the chairman and CEO of Trump Organization, which means to be another billionaire.
     Desires are such subtle stuffs that they can be aroused in a heart bit. I have never considered myself as a emotional person. But, dramatically, inspired by the competitors' classy dresses, elegant behaviors, and extraordinary experience, I can not refrain from intensely thinking about how my future can compare favorably with their's and whether my past has been down-to-earth enough to make the future glorious. 
     From the outset, I consider myself as an indomitable child who can prevail all the great odds(childish odds, of course).
•In my primary school, with the suffering of wounds and devastating reprimands from both parents and teachers, I organized a small-sized Defend Forces fighting against a diminutive Mafia, whose “mafiosos” frequently bully younger students.
•In my Junior School, I struggled for academic performances, from a penultimate student to top 20,finally entring a key high school.
•In my Senior School, I bit the bullet to compete in a national English competition. Surprisingly, I entered the final. Dramatically, I got the national first prize and passed the audition of CCTV-Children and became one of the hosts of Awards ceremony of ShanXi province. During the ending of my high school, I got a precious opportunity to be pre-approved by Beijing Foreign Study University. However, after an extremely fierce ideological struggle, I decided to drop the opportunity and prepare for College Entrance Examination to major in engineering within only two months. Now, in retrospect, it was my most heroic and sensible decision.
     The enthusiasm for life and the bravery to chase my dreams that I have acquired during my early years makes me feel that I am on my way to reach the “zenith”of the world. But the carefree college life carried me away, making the “Resurrection to Zenith”imperative.
There was a period of my first year college life when I lost my aims, my curiosity and even my faith: I didn’t want to do my daily job whole-heartedly as the vice president of my grade, because I was going to take GRE next year; I did not want to study my math textbook published by CSU, because I found the IVY’s course book--CALCULUS EARLY TRANSCENDENTAL far more attractive and useful... Then I put all those troubles aside, regarding computer games as my cup of tea, chatting with my friends during the day, and enjoying my sweet dreams after the 11 o’clock curfew.
     Life just elapsed, until I realized the superficially insurmontable gap between I and those candidates of Apprentice program. Then I saw the time I wasted, and it was totally a tragedy.
     Humans are such realistic creatures that only after tragedies came, most of us are willing to stop and ponder the nature of it. Then it causes us to ask "what if".  “What if I had been more assiduous.” “What if i had chosen differently.” “What if i had made that mistake.”“And what if the day were my last, then what I truly want.” Those questions suddenly sobered me, retrieving my way, my longing for knowledge and faith for life. Remembering that I’ll be dead soon is the most important thing I’ve ever encountered to help find my exuberance back. Because almost everything——all external entertainment, all pride, all fear of embarrassment, all depression——those things just fall away in the face of death, leaving what is truly indispensable . 
     I intend to study abroad after graduation from college unless there is something valuable enough as a lifetime career I would pursue making me drop out from university. If the later presumption would not happen, the former one is still a tough destination. However,as William Shakespeare, a British dramatist, said“things would have been waves of ups and downs, and if people can build climax to proceed will be Traveling”. Having fully embraced the belief, I made a relatively detailed plan to make it happen with strong confidence. A part of the plan is to be professional in IT fileds. Hence, with the study of an attractive programming language——JAVA, my Resurrection to Zenith is dawning.

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
目标检测(Object Detection)是计算机视觉领域的一个核心问题,其主要任务是找出图像中所有感兴趣的目标(物体),并确定它们的类别和位置。以下是对目标检测的详细阐述: 一、基本概念 目标检测的任务是解决“在哪里?是什么?”的问题,即定位出图像中目标的位置并识别出目标的类别。由于各类物体具有不同的外观、形状和姿态,加上成像时光照、遮挡等因素的干扰,目标检测一直是计算机视觉领域最具挑战性的任务之一。 二、核心问题 目标检测涉及以下几个核心问题: 分类问题:判断图像中的目标属于哪个类别。 定位问题:确定目标在图像中的具体位置。 大小问题:目标可能具有不同的大小。 形状问题:目标可能具有不同的形状。 三、算法分类 基于深度学习的目标检测算法主要分为两大类: Two-stage算法:先进行区域生成(Region Proposal),生成有可能包含待检物体的预选框(Region Proposal),再通过卷积神经网络进行样本分类。常见的Two-stage算法包括R-CNN、Fast R-CNN、Faster R-CNN等。 One-stage算法:不用生成区域提议,直接在网络中提取特征来预测物体分类和位置。常见的One-stage算法包括YOLO系列(YOLOv1、YOLOv2、YOLOv3、YOLOv4、YOLOv5等)、SSD和RetinaNet等。 四、算法原理 以YOLO系列为例,YOLO将目标检测视为回归问题,将输入图像一次性划分为多个区域,直接在输出层预测边界框和类别概率。YOLO采用卷积网络来提取特征,使用全连接层来得到预测值。其网络结构通常包含多个卷积层和全连接层,通过卷积层提取图像特征,通过全连接层输出预测结果。 五、应用领域 目标检测技术已经广泛应用于各个领域,为人们的生活带来了极大的便利。以下是一些主要的应用领域: 安全监控:在商场、银行
目标检测(Object Detection)是计算机视觉领域的一个核心问题,其主要任务是找出图像中所有感兴趣的目标(物体),并确定它们的类别和位置。以下是对目标检测的详细阐述: 一、基本概念 目标检测的任务是解决“在哪里?是什么?”的问题,即定位出图像中目标的位置并识别出目标的类别。由于各类物体具有不同的外观、形状和姿态,加上成像时光照、遮挡等因素的干扰,目标检测一直是计算机视觉领域最具挑战性的任务之一。 二、核心问题 目标检测涉及以下几个核心问题: 分类问题:判断图像中的目标属于哪个类别。 定位问题:确定目标在图像中的具体位置。 大小问题:目标可能具有不同的大小。 形状问题:目标可能具有不同的形状。 三、算法分类 基于深度学习的目标检测算法主要分为两大类: Two-stage算法:先进行区域生成(Region Proposal),生成有可能包含待检物体的预选框(Region Proposal),再通过卷积神经网络进行样本分类。常见的Two-stage算法包括R-CNN、Fast R-CNN、Faster R-CNN等。 One-stage算法:不用生成区域提议,直接在网络中提取特征来预测物体分类和位置。常见的One-stage算法包括YOLO系列(YOLOv1、YOLOv2、YOLOv3、YOLOv4、YOLOv5等)、SSD和RetinaNet等。 四、算法原理 以YOLO系列为例,YOLO将目标检测视为回归问题,将输入图像一次性划分为多个区域,直接在输出层预测边界框和类别概率。YOLO采用卷积网络来提取特征,使用全连接层来得到预测值。其网络结构通常包含多个卷积层和全连接层,通过卷积层提取图像特征,通过全连接层输出预测结果。 五、应用领域 目标检测技术已经广泛应用于各个领域,为人们的生活带来了极大的便利。以下是一些主要的应用领域: 安全监控:在商场、银行
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值