-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1081 lines (809 loc) · 45.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="SemiColonWeb" />
<!-- Stylesheets
============================================= -->
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,400italic,600,700|Raleway:300,400,500,600,700|Crete+Round:400italic" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="style.css" type="text/css" />
<link rel="stylesheet" href="css/dark.css" type="text/css" />
<link rel="stylesheet" href="css/font-icons.css" type="text/css" />
<link rel="stylesheet" href="css/animate.css" type="text/css" />
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css" />
<link rel="stylesheet" href="css/responsive.css" type="text/css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lt IE 9]>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->
<!-- External JavaScripts
============================================= -->
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/plugins.js"></script>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<!-- Document Title
============================================= -->
<title>Home | Carnot Research</title>
<link rel="shortcut icon" type="image/png" href="images/favicon.png">
</head>
<body class="stretched">
<!-- New Launch Update -->
<a href="https://iknow.carnotresearch.com" target="_blank">
<p style="
background-color: #061e2d;
color: white;
text-align: center;
font-weight: bold;
margin-bottom: 0;
white-space: nowrap;
overflow: hidden;
position: relative;
">
<span style="
display: inline-block;
padding-left: 50%;
animation: marquee 18s linear infinite;
">
Checkout our new launch: <b>icarKno-chat</b> Query any document with ease in your own language
</span>
</p>
</a>
<style>
@keyframes marquee {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}
</style>
<!-- Document Wrapper
============================================= -->
<div id="wrapper" class="clearfix">
<div id="home" class="page-section" style="position:absolute;top:0;left:0;width:100%;height:200px;z-index:-2;"></div>
<!-- Header
============================================= -->
<header id="header" class="full-header">
<div id="header-wrap">
<div class="container clearfix">
<div id="primary-menu-trigger"><i class="icon-reorder"></i></div>
<!-- Logo
============================================= -->
<div id="logo">
<a href="index.html" class="standard-logo" data-dark-logo="images/logo-dark.png"><img src="images/sideLogo.png" alt="Canvas Logo"></a>
<a href="index.html" class="retina-logo" data-dark-logo="images/[email protected]"><img src="images/sideLogo.png" alt="Canvas Logo"></a>
</div><!-- #logo end -->
<!-- Primary Navigation
============================================= -->
<nav id="primary-menu">
<ul class="one-page-menu" data-easing="easeInOutExpo" data-speed="1500">
<li><a href="#" data-href="#home"><div>Home</div></a></li>
<li><a href="#" data-href="#section-about"><div>About</div></a></li>
<li><a href="#" data-href="#section-products"><div>Products</div></a></li>
<li><a href="#" data-href="#section-services"><div>Services</div></a></li>
<li><a href="#" data-href="#section-research-areas"><div>Research Areas</div></a></li>
<li><a href="https://playground.carnotresearch.com/" target="_blank"><div>Demos</div></a></li>
<li><a href="https://carnotresearch.medium.com/" target="_blank"><div>Blog</div></a></li>
<li><a href="https://cr-vision.carnotresearch.com/" target="_blank"><div>Open Source</div></a></li>
<li><a href="#" data-href="#section-contact"><div>Contact</div></a></li>
<li><a href="https://www.youtube.com/channel/UCj1T9bEj2CrG_gGYVQP3e-A" target="_blank"><i class="icon-youtube-play"></i></a></li>
</ul>
<!-- Top Search
============================================= -->
<div id="top-search">
<a href="#" id="top-search-trigger"><i class="icon-search3"></i><i class="icon-line-cross"></i></a>
<form action="search.html" method="get">
<input type="text" name="q" class="form-control" value="" placeholder="Type & Hit Enter..">
</form>
</div><!-- #top-search end -->
</nav><!-- #primary-menu end -->
</div>
</div>
</header><!-- #header end -->
<section id="slider" class="slider-parallax full-screen with-header swiper_wrapper clearfix">
<div class="swiper-container swiper-parent">
<div class="swiper-wrapper">
<div class="swiper-slide dark" style="background-image: url('images/slider/swiper/1.jpg');">
<div class="container clearfix">
<div class="slider-caption slider-caption-center">
<h2 data-caption-animate="fadeInUp">Welcome to Carnot Research</h2>
<p data-caption-animate="fadeInUp" data-caption-delay="200">Empowering individuals and organizations to leverage cutting edge research and enable innovation.</p>
</div>
</div>
</div>
<div class="swiper-slide dark" style="background-image: url('images/slider/swiper/2.jpg');">
<!-- <div class="swiper-slide dark">-->
<div class="container clearfix">
<div class="slider-caption">
<!-- <div class="slider-caption slider-caption-center">-->
<h2 data-caption-animate="fadeInUp">The Carnot Difference</h2>
<p data-caption-animate="fadeInUp" data-caption-delay="200">Right mix of academics and industry professionals, Key differentiator is our ability to provide managed research for serving your innovation needs.</p>
</div>
</div>
<div class="video-wrap">
<video poster="images/videos/explore.jpg" preload="auto" loop autoplay muted>
<source src='images/videos/explore.mp4' type='video/mp4' />
<source src='images/videos/explore.webm' type='video/webm' />
</video>
<div class="video-overlay" style="background-color: rgba(0,0,0,0.55);"></div>
</div>
</div>
<div class="swiper-slide dark" style="background-image: url('images/slider/swiper/3.jpg');">
<!-- <div class="swiper-slide" style="background-image: url('images/slider/swiper/3.jpg'); background-position: center top;">-->
<div class="container clearfix">
<div class="slider-caption">
<!-- <h2 data-caption-animate="fadeInUp">The Carnot Vision</h2>-->
<h2 data-caption-animate="fadeInUp">Research Areas</h2>
<!-- <p data-caption-animate="fadeInUp" data-caption-delay="200">Carnot Research envisions to propel technology innovation by delivering predictable & measurable research solutions.</p>-->
<p data-caption-animate="fadeInUp" data-caption-delay="200">Active in a wide variety of research areas with major focus on Computer Vision and NLP.</p>
</div>
</div>
</div>
</div>
<div id="slider-arrow-left"><i class="icon-angle-left"></i></div>
<div id="slider-arrow-right"><i class="icon-angle-right"></i></div>
<div id="slide-number"><div id="slide-number-current"></div><span>/</span><div id="slide-number-total"></div></div>
</div>
<script>
jQuery(document).ready(function($){
var swiperSlider = new Swiper('.swiper-parent',{
paginationClickable: false,
// autoplay: 5000,
slidesPerView: 1,
grabCursor: true,
onSwiperCreated: function(swiper){
$('[data-caption-animate]').each(function(){
var $toAnimateElement = $(this);
var toAnimateDelay = $(this).attr('data-caption-delay');
var toAnimateDelayTime = 0;
if( toAnimateDelay ) { toAnimateDelayTime = Number( toAnimateDelay ) + 750; } else { toAnimateDelayTime = 750; }
if( !$toAnimateElement.hasClass('animated') ) {
$toAnimateElement.addClass('not-animated');
var elementAnimation = $toAnimateElement.attr('data-caption-animate');
setTimeout(function() {
$toAnimateElement.removeClass('not-animated').addClass( elementAnimation + ' animated');
}, toAnimateDelayTime);
}
});
},
onSlideChangeStart: function(swiper){
$('#slide-number-current').html(swiper.activeIndex + 1);
$('[data-caption-animate]').each(function(){
var $toAnimateElement = $(this);
var elementAnimation = $toAnimateElement.attr('data-caption-animate');
$toAnimateElement.removeClass('animated').removeClass(elementAnimation).addClass('not-animated');
});
},
onSlideChangeEnd: function(swiper){
$('#slider .swiper-slide').each(function(){
if($(this).find('video').length > 0) { $(this).find('video').get(0).pause(); }
});
$('#slider .swiper-slide:not(".swiper-slide-active")').each(function(){
if($(this).find('video').length > 0) {
if($(this).find('video').get(0).currentTime != 0 ) $(this).find('video').get(0).currentTime = 0;
}
});
if( $('#slider .swiper-slide.swiper-slide-active').find('video').length > 0 ) { $('#slider .swiper-slide.swiper-slide-active').find('video').get(0).play(); }
$('#slider .swiper-slide.swiper-slide-active [data-caption-animate]').each(function(){
var $toAnimateElement = $(this);
var toAnimateDelay = $(this).attr('data-caption-delay');
var toAnimateDelayTime = 0;
if( toAnimateDelay ) { toAnimateDelayTime = Number( toAnimateDelay ) + 300; } else { toAnimateDelayTime = 300; }
if( !$toAnimateElement.hasClass('animated') ) {
$toAnimateElement.addClass('not-animated');
var elementAnimation = $toAnimateElement.attr('data-caption-animate');
setTimeout(function() {
$toAnimateElement.removeClass('not-animated').addClass( elementAnimation + ' animated');
}, toAnimateDelayTime);
}
});
}
});
$('#slider-arrow-left').on('click', function(e){
e.preventDefault();
swiperSlider.swipePrev();
});
$('#slider-arrow-right').on('click', function(e){
e.preventDefault();
swiperSlider.swipeNext();
});
$('#slide-number-current').html(swiperSlider.activeIndex + 1);
$('#slide-number-total').html(swiperSlider.slides.length);
});
</script>
</section>
<div class="clear"></div>
<!-- Content
============================================= -->
<section id="content">
<div class="content-wrap">
<section id="section-about" class="page-section">
<div class="container clearfix">
<div class="heading-block center">
<h2>We are <span>Carnot Research</span></h2>
<span>Everything About Us</span>
</div>
<div class="col_one_third">
<div class="heading-block fancy-title nobottomborder title-bottom-border">
<h4>Who We <span>Are</span>.</h4>
</div>
<p>We are a team of professors, scientists, and engineers from the top IITs in the country. We share a passion for conducting deployable research and innovating deep-tech products in the area of machine learning and deep learning, including NLP. Collectively, the team members have experience of over 120 years and hold multiple patents and papers in the top journals and conferences.
</p>
</div>
<div class="col_one_third">
<div class="heading-block fancy-title nobottomborder title-bottom-border">
<h4>What we <span>Do</span>.</h4>
</div>
<p>Carnot Research develops cutting-edge technology products and provides research services and industry skilling in niche and deep tech areas, namely AI, Computer Vision, AR/VR, NLP and IoT. The key differentiator is our ability to conduct managed research for serving your innovation needs. Our strength is the selected group of researchers, trained in the best institutes and with extensive industry experience, that steer research to realize/exceed your business goals.
</p>
</div>
<div class="col_one_third col_last">
<div class="heading-block fancy-title nobottomborder title-bottom-border">
<h4>Our <span>Mission</span>.</h4>
</div>
<p>Carnot's mission is to work with companies & organizations of all sizes, from startups to Fortune 500 companies to government agencies. We are applying AI to design & develop advanced solutions to complex, challenging problems across industries - retail, healthcare, manufacturing, media, sports, telecom, & IoT. We are active in a wide variety of research areas with major focus on computer vision and NLP. We are also capable of providing seamless cross domain linkages with IoT, Blockchain and Cyber Security.</p>
</div>
<!-- <div class="line"></div>-->
</div>
</section>
<section id="section-products" class="page-section topmargin-lg">
<div class="heading-block center bottommargin-lg">
<h2>Products</h2>
<span>We develop deep-tech products for AI, Computer Vision and NLP based requirements.</span>
<iframe src="https://www.linkedin.com/embed/feed/update/urn:li:share:7229065147212832768" height="500" width="400" frameborder="0" allowfullscreen="" title="Embedded post"></iframe>
</div>
</section>
<section id="section-services" class="page-section topmargin-lg">
<div class="heading-block center bottommargin-lg">
<h2>Services</h2>
<span>We provide research consultancy, industry skilling and IP development services across industries.</span>
</div>
<div class="container clearfix">
<div class="col_one_third">
<div class="feature-box fbox-center fbox-effect nobottomborder" data-animate="fadeIn">
<div class="fbox-icon">
<a href="#"><i class="icon-health"></i></a>
</div>
<h3>Healthcare</h3>
<!-- <p>Powerful Layout with Responsive functionality that can be adapted to any screen size.</p>-->
</div>
</div>
<div class="col_one_third">
<div class="feature-box fbox-center fbox-effect nobottomborder" data-animate="fadeIn" data-delay="200">
<div class="fbox-icon">
<a href="#"><i class="icon-shop"></i></a>
</div>
<h3>Retail</h3>
<!-- <p>Looks beautiful & ultra-sharp on Retina Displays with Retina Icons, Fonts & Images.</p>-->
</div>
</div>
<div class="col_one_third col_last">
<div class="feature-box fbox-center fbox-effect nobottomborder" data-animate="fadeIn" data-delay="400">
<div class="fbox-icon">
<a href="#"><i class="icon-connection-full"></i></a>
</div>
<h3>Manufacturing</h3>
<!-- <p>Optimized code that are completely customizable and deliver unmatched fast performance.</p>-->
</div>
</div>
<div class="clear"></div>
<div class="col_one_third">
<div class="feature-box fbox-center fbox-effect nobottomborder" data-animate="fadeIn" data-delay="600">
<div class="fbox-icon">
<a href="#"><i class="icon-phone-sign"></i></a>
</div>
<h3>Telecom</h3>
<!-- <p>Canvas provides support for Native HTML5 Videos that can be added to a Full Width Background.</p>-->
</div>
</div>
<div class="col_one_third">
<div class="feature-box fbox-center fbox-effect nobottomborder" data-animate="fadeIn" data-delay="800">
<div class="fbox-icon">
<a href="#"><i class="icon-news"></i></a>
</div>
<h3>Media</h3>
<!-- <p>Display your Content attractively using Parallax Sections that have unlimited customizable areas.</p>-->
</div>
</div>
<div class="col_one_third col_last">
<div class="feature-box fbox-center fbox-effect nobottomborder" data-animate="fadeIn" data-delay="1000">
<div class="fbox-icon">
<a href="#"><i class="icon-line-signal"></i></a>
</div>
<h3>IoT</h3>
<!-- <p>Complete control on each & every element that provides endless customization possibilities.</p>-->
</div>
</div>
<div class="clear"></div>
<div class="col_one_third nobottommargin">
<div class="feature-box fbox-center fbox-effect nobottomborder" data-animate="fadeIn" data-delay="1200">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-bulb"></i></a>-->
<a href="#"><i class="material-icons">security</i></a>
</div>
<h3>Cyber Security</h3>
<!-- <p>Change your Website's Primary Scheme instantly by simply adding the dark class to the body.</p>-->
</div>
</div>
<div class="col_one_third nobottommargin">
<div class="feature-box fbox-center fbox-effect nobottomborder" data-animate="fadeIn" data-delay="1400">
<div class="fbox-icon">
<a href="#"><i class="icon-banknote"></i></a>
</div>
<h3>Finance</h3>
<!-- <p>Stretch your Website to the Full Width or make it boxed to surprise your visitors.</p>-->
</div>
</div>
<div class="col_one_third nobottommargin col_last">
<div class="feature-box fbox-center fbox-effect nobottomborder" data-animate="fadeIn" data-delay="1600">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-volleyball-ball"></i></a>-->
<a href="#"><i class="material-icons">sports_handball</i></a>
</div>
<h3>Sports</h3>
<!-- <p>We have covered each & everything in our Documentation including Videos & Screenshots.</p>-->
</div>
<div class="clear">
</div>
</div>
<div class="clear">
</div>
<div class="divider divider-short divider-center topmargin-lg"><i class="icon-star3"></i></div>
<div class="col_one_third">
<div class="feature-box fbox-center fbox-effect nobottomborder" data-animate="fadeIn" data-delay="2000">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-volleyball-ball"></i></a>-->
<a href="#"><i class="icon-connection-full"></i></a>
</div>
<h3>Industry Skilling</h3>
<!-- <p>We have covered each & everything in our Documentation including Videos & Screenshots.</p>-->
</div>
</div>
<div class="clear"></div>
</div>
<div class="divider divider-short divider-center topmargin-lg"><i class="icon-star3"></i></div>
</section>
<section id="section-research-areas" class="page-section">
<div class="heading-block center bottommargin-lg">
<h2>Research Areas</h2>
<span>We conduct research in primarily 2 areas.</span>
</div>
<div class="container clearfix">
<!-- <div class="col_two_third topmargin-sm bottommargin">-->
<div class="col_three_fifth topmargin-sm bottommargin">
<img data-animate="fadeInLeftBig" src="images/research/vision-11%20cropped-3.jpg" alt="Imac">
</div>
<!-- <div class="col_one_third topmargin-sm bottommargin-lg col_last">-->
<div class="col_two_fifth topmargin-sm bottommargin-lg col_last">
<h3>Computer Vision</h3>
<!-- <span>Emulating Human Vision & Beyond.</span>-->
<!--
<div class="heading-block topmargin">
<h2>Computer Vision.</h2>
<span>Emulating Human Vision & Beyond.</span>
</div>
-->
<p>We use state of art approaches in computer vision and deep learning to help organizations extract, analyze and understand information from images & videos. By integrating computer vision technology into existing systems, organizations can automate and improve speed of various mechanical processes and also reduce operational costs. Our R&D team is constantly evaluating and testing latest approaches, taking on new client challenges in different areas.</p>
</div>
<div class="clear"></div>
<div class="col_one_third">
<div class="feature-box fbox-small fbox-plain" data-animate="fadeIn">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-phone2"></i></a>-->
<a href="#"><i class="material-icons">picture_in_picture_alt</i></a>
</div>
<h3>Object Detection</h3>
<p>Pedestrian Detection, Medical Imaging, Image Search, Automatic Image Annotation, Object Counting. </p>
</div>
</div>
<div class="col_one_third">
<div class="feature-box fbox-small fbox-plain" data-animate="fadeIn" data-delay="100">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-eye"></i></a>-->
<a href="#"><i class="material-icons">face</i></a>
</div>
<h3>Face Recognition</h3>
<p>Retail Crime Prevention, Smarter Advertising, Facial Biometrics, Automated Attendance.</p>
</div>
</div>
<div class="col_one_third col_last">
<div class="feature-box fbox-small fbox-plain" data-animate="fadeIn" data-delay="200">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-star2"></i></a>-->
<a href="#"><i class="material-icons">dvr</i></a>
</div>
<h3>Video Analytics</h3>
<p>Patient Monitoring, Predictive Maintenance, Store Heatmap, Surveillance, Autonomous Vehicles.</p>
</div>
</div>
<div class="clear"></div>
<div class="col_one_third">
<div class="feature-box fbox-small fbox-plain" data-animate="fadeIn" data-delay="300">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-video"></i></a>-->
<a href="#"><i class="material-icons">emoji_people</i></a>
</div>
<h3>Activity Recognition</h3>
<p>Security & Surveillance, Fitness Tracking, Fall Detection, Elderly Care, Event Detection.</p>
</div>
</div>
<div class="col_one_third">
<div class="feature-box fbox-small fbox-plain" data-animate="fadeIn" data-delay="400">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-params"></i></a>-->
<a href="#"><i class="material-icons">mood</i></a>
</div>
<h3>Emotion Recognition</h3>
<p>Market Research, e-Learning, Remote Elderly Care, Couselling, Driver Fatigue Monitoring.</p>
</div>
</div>
<div class="col_one_third col_last">
<div class="feature-box fbox-small fbox-plain" data-animate="fadeIn" data-delay="500">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-fire"></i></a>-->
<a href="#"><i class="material-icons">accessibility_new</i></a>
</div>
<h3>Pose Estimation</h3>
<p>Gait/Posture Analysis, Animation, Gaming, Virtual/Augmented Reality, Surveillance.</p>
</div>
</div>
<div class="clear"></div>
<div class="col_one_third">
<div class="feature-box fbox-small fbox-plain" data-animate="fadeIn" data-delay="600">
<div class="fbox-icon">
<a href="#"><i class="icon-video"></i></a>
<!-- <a href="#"><i class="material-icons">sports_handball</i></a>-->
</div>
<h3>Depth Estimation</h3>
<p>Robotics & Trajectory Estimation, Augmented Reality, Haze & Fog Removal.</p>
</div>
</div>
<div class="col_one_third">
<div class="feature-box fbox-small fbox-plain" data-animate="fadeIn" data-delay="700">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-params"></i></a>-->
<a href="#"><i class="material-icons">broken_image</i></a>
</div>
<h3>Semantic Segmentation</h3>
<p>Bio-medical Image Diagnosis, Autonomous Driving, Satellite Image Processing, Precision Agriculture.</p>
</div>
</div>
<div class="col_one_third col_last">
<div class="feature-box fbox-small fbox-plain" data-animate="fadeIn" data-delay="800">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-fire"></i></a>-->
<a href="#"><i class="material-icons">directions_run</i></a>
</div>
<h3>Object Tracking</h3>
<p>Sports Analytics, Human-Computer Interaction, Autonomous Driving, Surveillance.</p>
</div>
</div>
<div class="clear"></div>
<div class="line"></div>
<div class="col_two_fifth topmargin-sm bottommargin-lg">
<h3>Natural Language Processing.</h3>
<!--
<div class="heading-block topmargin">
<h2>Natural Language Processing.</h2>
<span>Understanding The Unspoken.</span>
</div>
-->
<p>Carnot conducts research in NLP with the goal of making machines read, understand and communicate in human language more effectively. We help organizations in deriving valuable insights hidden in unstructured data - text, email, customer reviews, social media, audio, images, and videos. Organizations can derive a number of benefits by integrating NLP capabilities into existing systems, like cost control, faster processing and smoother integration of data analysis capabilities. NLP is especially useful for organizations that analyze or consume complex documents and texts, or rely on this process in some form.</p>
</div>
<div class="col_three_fifth topmargin-sm bottommargin col_last">
<img data-animate="fadeInRightBig" src="images/research/nlp-4%20cropped.jpeg" alt="Imac">
</div>
<div class="clear"></div>
<div class="col_one_third">
<div class="feature-box fbox-small fbox-plain" data-animate="fadeIn">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-phone2"></i></a>-->
<a href="#"><i class="material-icons">emoji_emotions</i></a>
</div>
<h3>Sentiment Analysis</h3>
<p>Brand Monitoring, Employee's Feedback Tracking, Customer Support, Competitor Monitoring.</p>
</div>
</div>
<div class="col_one_third">
<div class="feature-box fbox-small fbox-plain" data-animate="fadeIn" data-delay="100">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-eye"></i></a>-->
<a href="#"><i class="material-icons">question_answer</i></a>
</div>
<h3>Question Answering</h3>
<p>Personal Assistants, Smart Home & Entertainment, HR Assistant.</p>
</div>
</div>
<div class="col_one_third col_last">
<div class="feature-box fbox-small fbox-plain" data-animate="fadeIn" data-delay="200">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-star2"></i></a>-->
<a href="#"><i class="material-icons">description</i></a>
</div>
<h3>Automatic Summarization</h3>
<p>Media Monitoring, SEO, Financial Research, Legal Contract Analysis, e-Learning, Patent Research.</p>
</div>
</div>
<div class="clear"></div>
<div class="col_one_third">
<div class="feature-box fbox-small fbox-plain" data-animate="fadeIn" data-delay="300">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-video"></i></a>-->
<a href="#"><i class="material-icons">record_voice_over</i></a>
</div>
<h3>Speech Recognition</h3>
<p>Virtual Assisants, Home Automation, IVR, Language Learning, Emotion Recognition, Transcription.</p>
</div>
</div>
<div class="col_one_third">
<div class="feature-box fbox-small fbox-plain" data-animate="fadeIn" data-delay="400">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-params"></i></a>-->
<a href="#"><i class="material-icons">chrome_reader_mode</i></a>
</div>
<h3>OCR</h3>
<p>Ivoice Management, Document Digitization, Handwriting Recognition, QR/Barcode Scanners.</p>
</div>
</div>
<div class="col_one_third col_last">
<div class="feature-box fbox-small fbox-plain" data-animate="fadeIn" data-delay="500">
<div class="fbox-icon">
<!-- <a href="#"><i class="icon-fire"></i></a>-->
<a href="#"><i class="material-icons">language</i></a>
</div>
<h3>Machine Translation</h3>
<p>Webpage Translation, Foreign Tourist & Military Communication Assistance, User Content Translation.</p>
</div>
</div>
<div class="clear"></div>
<div class="line"></div>
</div>
</section>
<section id="section-contact" class="page-section">
<div class="heading-block title-center">
<h2>Get in Touch with us</h2>
<span>Still have Questions? Contact Us using the Form below.</span>
</div>
<div class="container clearfix">
<!-- Contact Form
============================================= -->
<div class="col_half">
<div class="fancy-title title-dotted-border">
<h3>Contact us...</h3>
</div>
<div id="contact-form-result" data-notify-type="success" data-notify-msg="<i class=icon-ok-sign></i> Message Sent Successfully!"></div>
<form class="nobottommargin" id="template-contactform" name="template-contactform" method="POST">
<div class="form-process"></div>
<div class="col_one_third">
<label for="template-contactform-name">Name <small>*</small></label>
<input type="text" id="template-contactform-name" name="template-contactform-name" value="" class="sm-form-control required" />
</div>
<div class="col_one_third">
<label for="template-contactform-email">Email <small>*</small></label>
<input type="email" id="template-contactform-email" name="template-contactform-email" value="" class="required email sm-form-control" />
</div>
<div class="col_one_third col_last">
<label for="template-contactform-phone">Phone</label>
<input type="text" id="template-contactform-phone" name="template-contactform-phone" value="" class="sm-form-control" />
</div>
<div class="clear"></div>
<div class="col_two_third">
<label for="template-contactform-subject">Subject <small>*</small></label>
<input type="text" id="template-contactform-subject" name="template-contactform-subject" value="" class="required sm-form-control" />
</div>
<div class="col_one_third col_last">
<label for="template-contactform-service">Services</label>
<select id="template-contactform-service" name="template-contactform-service" class="sm-form-control">
<option value="">-- Select One --</option>
<option value="Product Development">Product Development</option>
<option value="Research Consulting">Research Consulting</option>
<option value="Intellectual Property">Intellectual Property</option>
</select>
</div>
<div class="clear"></div>
<div class="col_full">
<label for="template-contactform-message">Message <small>*</small></label>
<textarea class="required sm-form-control" id="template-contactform-message" name="template-contactform-message" rows="6" cols="30"></textarea>
</div>
<div class="col_full hidden">
<input type="text" id="template-contactform-botcheck" name="template-contactform-botcheck" value="" class="sm-form-control" />
</div>
<div class="col_full">
<div class="g-recaptcha" data-sitekey="6Lehn-cpAAAAAJ4E59tN-ihLUUDt3zpEykVAMRPI"></div>
</div>
<div class="col_full">
<button class="button button-3d nomargin" type="submit" id="template-contactform-submit" name="template-contactform-submit" value="submit">Send Message</button>
</div>
</form>
<script>
document.getElementById('template-contactform').addEventListener('submit', async function(event) {
event.preventDefault();
const form = event.target;
const formData = new FormData(form);
const formObject = Object.fromEntries(formData.entries());
try {
const response = await fetch('https://izwz05lqn1.execute-api.ap-south-1.amazonaws.com/default/sendMail', {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
body: new URLSearchParams(formObject).toString()
});
if (response.ok) {
alert('Form submitted successfully');
form.reset(); // Clear the form fields
} else {
const errorData = await response.json();
alert('Form submission failed: ' + errorData.message);
}
} catch (error) {
alert('An error occurred: ' + error.message);
}
});
</script>
<!--
<script type="text/javascript">
$("#template-contactform").validate({
submitHandler: function(form) {
$('.form-process').fadeIn();
$(form).ajaxSubmit({
target: '#contact-form-result',
success: function() {
$('.form-process').fadeOut();
$('#template-contactform').find('.sm-form-control').val('');
$('#contact-form-result').attr('data-notify-msg', $('#contact-form-result').html()).html('');
SEMICOLON.widget.notifications($('#contact-form-result'));
}
});
}
});
</script>
-->
</div><!-- Contact Form End -->
<!-- Google Map
============================================= -->
<div class="col_half col_last">
<section id="google-map" class="gmap" style="height: 410px;"></section>
<script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=false&key=AIzaSyASAdjXqw6M1mOLNQYOi8tm6Vqd_dJkoCY"></script>
<script type="text/javascript" src="js/jquery.gmap.js"></script>
<script type="text/javascript">
jQuery('#google-map').gMap({
address: 'Hauz Khas, Delhi, India',
maptype: 'ROADMAP',
zoom: 14,
markers: [
{
address: "Hauz Khas, Delhi, India",
html: '<div style="width: 300px;"><h4 style="margin-bottom: 8px;">Hi, we\'re <span>Envato</span></h4><p class="nobottommargin">Our mission is to help people to <strong>earn</strong> and to <strong>learn</strong> online. We operate <strong>marketplaces</strong> where hundreds of thousands of people buy and sell digital goods every day, and a network of educational blogs where millions learn <strong>creative skills</strong>.</p></div>',
icon: {
image: "images/icons/map-icon-red.png",
iconsize: [32, 39],
iconanchor: [32,39]
}
}
],
doubleclickzoom: false,
controls: {
panControl: true,
zoomControl: true,
mapTypeControl: true,
scaleControl: false,
streetViewControl: false,
overviewMapControl: false
}
});
</script>
</div><!-- Google Map End -->
<!-- Contact Info
============================================= -->
<div class="col_full nobottommargin clearfix">
<div class="col_one_fourth">
<div class="feature-box fbox-center fbox-bg fbox-plain">
<div class="fbox-icon">
<a href="#"><i class="icon-map-marker2"></i></a>
</div>
<h3>Our Headquarters<span class="subtitle">371 SFS DDA Flats, Hauz Khas, New Delhi, India</span></h3>
</div>
</div>
<div class="col_one_fourth">
<div class="feature-box fbox-center fbox-bg fbox-plain">
<div class="fbox-icon">
<a href="#"><i class="icon-email3"></i></a>
</div>
<h3>Write To Us<span class="subtitle">[email protected]</span></h3>
</div>
</div>
<!--
<div class="col_one_fourth">
<div class="feature-box fbox-center fbox-bg fbox-plain">
<div class="fbox-icon">
<a href="#"><i class="icon-phone3"></i></a>
</div>
<h3>Speak to Us<span class="subtitle">(882) 689 9987</span></h3>
</div>
</div>
<div class="col_one_fourth">
<div class="feature-box fbox-center fbox-bg fbox-plain">
<div class="fbox-icon">
<a href="#"><i class="icon-skype2"></i></a>
</div>
<h3>Make a Video Call<span class="subtitle">CarnotOnSkype</span></h3>
</div>
</div>
<div class="col_one_fourth col_last">
<div class="feature-box fbox-center fbox-bg fbox-plain">
<div class="fbox-icon">
<a href="#"><i class="icon-twitter2"></i></a>
</div>
<h3>Follow on Twitter<span class="subtitle">2.3M Followers</span></h3>
</div>
</div>
-->
</div><!-- Contact Info End -->
</div>
</section>
</div>
</section><!-- #content end -->
<!-- Footer
============================================= -->
<footer id="footer" class="dark">