Transformation and dynamic visualization of images from computer through an FPGA in a matrix of LED
Around the transformations [11], extraction of characteristics [12] or any other type of massive matrix operation, object detection and recognition and route planning, Programmable Logic Devices (PLD) have been used, since they require low power and a small amount of space to work [13, 14] in additi...
Saved in:
| Published in | Telkomnika Vol. 17; no. 6; pp. 3003 - 3009 |
|---|---|
| Main Authors | , , |
| Format | Journal Article |
| Language | English |
| Published |
Yogyakarta
Ahmad Dahlan University
01.12.2019
|
| Subjects | |
| Online Access | Get full text |
| ISSN | 1693-6930 2302-9293 2302-9293 |
| DOI | 10.12928/telkomnika.v17i6.12710 |
Cover
| Abstract | Around the transformations [11], extraction of characteristics [12] or any other type of massive matrix operation, object detection and recognition and route planning, Programmable Logic Devices (PLD) have been used, since they require low power and a small amount of space to work [13, 14] in addition to having the ability to perform real-time implementations, working with static and moving images [15], which requires thousands of iterations per second, with maximum use of FPGA resources, both in the combinatorial part (LUT) as in its storage part (memory bank), making efficient the implementations made with this type of devices [16, 17]. The flexibility and performance of hardware development using standard hardware description languages, regardless of the size and architectures of different FPGA's, offers the possibility to test and compare different algorithm resolution methods, which could give different solutions and indicate what family and what architecture would be the most appropriate to use in digital image processing applications [22, 23], using the combination of Soft Cores together with hardware designed to accelerate information processing. The work done begins with the design of a software script on the personal computer, which sends the data of the digital image in binary-ascii format through a serial port emulated towards the FPGA, after that, the programmable logic device processes the information, sends the data to a power system that supports the electrical requirements at the speed required by the array of LEDs and in this way the correct visualization of the information is made. 3.Implementation and Results The first part of the work is shown in the following code, the script reads different formats of images (jpg, png and gif), it will make the conversion to a matrix of valor to create the ROM file, it will be read for the FPGA and put in to LED matrix. imread () /imshow () to verify that it is in full form for processing. im = imread('Mario_8bits.PNG'); figure () imshow(im) In the following code segment, to scale the image the imresize () function is used, which gives us the facility of scaling the value of a square or rectangular matrix to the size to be visualized in the array of LEDs, a bicubic interpolation algorithm was used, a process that guarantees that do not drastically change the information that will be sent to the FPGA. im_small = imresize(im, [32 32], 'cubic'); figure () imshow(im_small) The next code shown that the matrices for the images that are entered were defined for a size of 32x32 being this a square matrix, the selection of the size is based on the space to occupy within the ROM memories that will be of 1024 bits maximum size of each block of memory of a standard FPGA, which has a capacity of 8 times the value of each block generated. im_small_r = im_small(:, im_small_g = im_small(:, im small b = im small(:, The image already scaled is broken down into the 3 matrices of the channels that make up a digital image R (network), G (green) and B (blue), maintaining the intensity characteristics to conform the different color possibilities, in each matrix the values of each pixel have a magnitude between 0 and 255. The input channel of the module (seriai_in) receives the data to work with the waiting of a rising edge for the transmission of the 8 bits. (data_out) is the parallel output of the received data. (read_buffer) in high state of responsible for the transmission of the data to a FIFO memory. (reset_buffer) in active state delete the data saved under the count of 16 data blocks. (en_i6_x_baud) in active state makes the counting of 16 cycles of 8 bits which culminates the storage so that the entire block created in the 16x8 memory will be transmitted. (buffer_data_present) gives an input prompt or that there is information block in the memory. (buffer_fuii or buffer_haif_fuii) indicates in high mode the full state of the memory, indicates how their names say full or half full 16x8/8x8 when it is full memory communicates this state and activates the complete transfer of the memory block wherever your processing is necessary. (cik) system clock for a synchronous multiple system. 3.2.Reception and Storage of Blocks of Information in RAM In the design and implementation of the system it is observed how the CORE of the Uart provided by Xilinx is controlled, by means of a finite state machine, this is in charge of reading the data from the FIFO memory and passing it to the internal RAM memory of the FPGA, in this way it is possible to read blocks of information from the USB-Serial port of the computer to the internal memory, which will then be responsible for displaying the information, as shown in Figure 4. |
|---|---|
| AbstractList | Around the transformations [11], extraction of characteristics [12] or any other type of massive matrix operation, object detection and recognition and route planning, Programmable Logic Devices (PLD) have been used, since they require low power and a small amount of space to work [13, 14] in addition to having the ability to perform real-time implementations, working with static and moving images [15], which requires thousands of iterations per second, with maximum use of FPGA resources, both in the combinatorial part (LUT) as in its storage part (memory bank), making efficient the implementations made with this type of devices [16, 17]. The flexibility and performance of hardware development using standard hardware description languages, regardless of the size and architectures of different FPGA's, offers the possibility to test and compare different algorithm resolution methods, which could give different solutions and indicate what family and what architecture would be the most appropriate to use in digital image processing applications [22, 23], using the combination of Soft Cores together with hardware designed to accelerate information processing. The work done begins with the design of a software script on the personal computer, which sends the data of the digital image in binary-ascii format through a serial port emulated towards the FPGA, after that, the programmable logic device processes the information, sends the data to a power system that supports the electrical requirements at the speed required by the array of LEDs and in this way the correct visualization of the information is made. 3.Implementation and Results The first part of the work is shown in the following code, the script reads different formats of images (jpg, png and gif), it will make the conversion to a matrix of valor to create the ROM file, it will be read for the FPGA and put in to LED matrix. imread () /imshow () to verify that it is in full form for processing. im = imread('Mario_8bits.PNG'); figure () imshow(im) In the following code segment, to scale the image the imresize () function is used, which gives us the facility of scaling the value of a square or rectangular matrix to the size to be visualized in the array of LEDs, a bicubic interpolation algorithm was used, a process that guarantees that do not drastically change the information that will be sent to the FPGA. im_small = imresize(im, [32 32], 'cubic'); figure () imshow(im_small) The next code shown that the matrices for the images that are entered were defined for a size of 32x32 being this a square matrix, the selection of the size is based on the space to occupy within the ROM memories that will be of 1024 bits maximum size of each block of memory of a standard FPGA, which has a capacity of 8 times the value of each block generated. im_small_r = im_small(:, im_small_g = im_small(:, im small b = im small(:, The image already scaled is broken down into the 3 matrices of the channels that make up a digital image R (network), G (green) and B (blue), maintaining the intensity characteristics to conform the different color possibilities, in each matrix the values of each pixel have a magnitude between 0 and 255. The input channel of the module (seriai_in) receives the data to work with the waiting of a rising edge for the transmission of the 8 bits. (data_out) is the parallel output of the received data. (read_buffer) in high state of responsible for the transmission of the data to a FIFO memory. (reset_buffer) in active state delete the data saved under the count of 16 data blocks. (en_i6_x_baud) in active state makes the counting of 16 cycles of 8 bits which culminates the storage so that the entire block created in the 16x8 memory will be transmitted. (buffer_data_present) gives an input prompt or that there is information block in the memory. (buffer_fuii or buffer_haif_fuii) indicates in high mode the full state of the memory, indicates how their names say full or half full 16x8/8x8 when it is full memory communicates this state and activates the complete transfer of the memory block wherever your processing is necessary. (cik) system clock for a synchronous multiple system. 3.2.Reception and Storage of Blocks of Information in RAM In the design and implementation of the system it is observed how the CORE of the Uart provided by Xilinx is controlled, by means of a finite state machine, this is in charge of reading the data from the FIFO memory and passing it to the internal RAM memory of the FPGA, in this way it is possible to read blocks of information from the USB-Serial port of the computer to the internal memory, which will then be responsible for displaying the information, as shown in Figure 4. |
| Author | Santa, Fernando Martínez Ariza, Holman Montiel Gómez, Edwar Jacinto |
| Author_xml | – sequence: 1 givenname: Edwar Jacinto surname: Gómez fullname: Gómez, Edwar Jacinto – sequence: 2 givenname: Fernando Martínez surname: Santa fullname: Santa, Fernando Martínez – sequence: 3 givenname: Holman Montiel surname: Ariza fullname: Ariza, Holman Montiel |
| BookMark | eNqNkFFLwzAQx4NMcM59BgM-dyZp0zSPY25TGOjDfA4xTbdsbTKTdjo_vXEVfPXgOLi7_5-73zUYWGc1ALcYTTDhpLhvdb13jTV7OTliZvLYZhhdgCFJEUk44ekADHHO0yQmugLjEHYoBkOE8mII1NpLGyrnG9kaZ6G0JSxPVjZGwaMJnazNVz9xFTSN3OgAK-8aqFxz6FrtYbv1rttsoxIuXpZTaKIJjG7efP5oVvOHG3BZyTro8W8dgdfFfD17TFbPy6fZdJUozClKGMtpVjIV_yI4qxjCMlWEEo7KDHOUq4xijnOC0hLTImNSlTx7yzElWCvKcToCRe_b2YM8fci6Fgcfb_YngZE48xJ_vMSZlzjzitK7Xnrw7r3ToRU713kbrxUkLSK6PEc0brF-S3kXgtfVv_2_AX4ngY4 |
| ContentType | Journal Article |
| Copyright | 2019. This work is published under https://creativecommons.org/licenses/by/3.0 (the “License”). Notwithstanding the ProQuest Terms and Conditions, you may use this content in accordance with the terms of the License. |
| Copyright_xml | – notice: 2019. This work is published under https://creativecommons.org/licenses/by/3.0 (the “License”). Notwithstanding the ProQuest Terms and Conditions, you may use this content in accordance with the terms of the License. |
| DBID | AAYXX CITATION 8FE 8FG ABUWG AFKRA ARAPS AZQEC BENPR BGLVJ BVBZV CCPQU DWQXO HCIFZ P5Z P62 PHGZM PHGZT PIMPY PKEHL PQEST PQGLB PQQKQ PQUKI PRINS ADTOC UNPAY |
| DOI | 10.12928/telkomnika.v17i6.12710 |
| DatabaseName | CrossRef ProQuest SciTech Collection ProQuest Technology Collection ProQuest Central (Alumni) ProQuest Central UK/Ireland Advanced Technologies & Computer Science Collection ProQuest Central Essentials Local Electronic Collection Information Proquest Central Journals Technology Collection East & South Asia Database ProQuest One ProQuest Central Korea Proquest SciTech Premium Collection Advanced Technologies & Aerospace Database ProQuest Advanced Technologies & Aerospace Collection ProQuest Central Premium ProQuest One Academic Proquest Publicly Available Content Database ProQuest One Academic Middle East (New) ProQuest One Academic Eastern Edition (DO NOT USE) ProQuest One Applied & Life Sciences ProQuest One Academic ProQuest One Academic UKI Edition ProQuest Central China Unpaywall for CDI: Periodical Content Unpaywall |
| DatabaseTitle | CrossRef Publicly Available Content Database Advanced Technologies & Aerospace Collection Technology Collection ProQuest One Academic Middle East (New) ProQuest Advanced Technologies & Aerospace Collection ProQuest Central Essentials ProQuest One Academic Eastern Edition ProQuest Central (Alumni Edition) SciTech Premium Collection ProQuest One Community College ProQuest Technology Collection ProQuest SciTech Collection ProQuest Central China East & South Asia Database ProQuest Central Advanced Technologies & Aerospace Database ProQuest One Applied & Life Sciences ProQuest One Academic UKI Edition ProQuest Central Korea ProQuest Central (New) ProQuest One Academic ProQuest One Academic (New) |
| DatabaseTitleList | Publicly Available Content Database |
| Database_xml | – sequence: 1 dbid: UNPAY name: Unpaywall url: https://proxy.k.utb.cz/login?url=https://unpaywall.org/ sourceTypes: Open Access Repository – sequence: 2 dbid: 8FG name: ProQuest Technology Collection url: https://search.proquest.com/technologycollection1 sourceTypes: Aggregation Database |
| DeliveryMethod | fulltext_linktorsrc |
| Discipline | Engineering |
| EISSN | 2302-9293 |
| EndPage | 3009 |
| ExternalDocumentID | 10.12928/telkomnika.v17i6.12710 10_12928_telkomnika_v17i6_12710 |
| GroupedDBID | 5VS 8FE 8FG AAKDD AAYXX ABDBF ABUWG ACUHS AFKRA ALMA_UNASSIGNED_HOLDINGS ARAPS BENPR BGLVJ BPHCQ BVBZV CCPQU CITATION EOJEC ESX HCIFZ I-F KQ8 MK~ ML~ OBODZ OK1 P62 PHGZM PHGZT PIMPY PQGLB PQQKQ PROAC PUEGO TUS AZQEC DWQXO PKEHL PQEST PQUKI PRINS AAKPC ADDVE ADTOC IPNFZ RIG UNPAY |
| ID | FETCH-LOGICAL-c1950-77654d7c292214f701a3c25290d41906c451916203d15847acd94b61521ec5913 |
| IEDL.DBID | BENPR |
| ISSN | 1693-6930 2302-9293 |
| IngestDate | Sun Oct 26 03:30:02 EDT 2025 Sun Sep 07 03:43:50 EDT 2025 Wed Oct 01 05:00:59 EDT 2025 |
| IsDoiOpenAccess | true |
| IsOpenAccess | true |
| IsPeerReviewed | true |
| IsScholarly | true |
| Issue | 6 |
| Language | English |
| License | cc-by-sa |
| LinkModel | DirectLink |
| MergedId | FETCHMERGED-LOGICAL-c1950-77654d7c292214f701a3c25290d41906c451916203d15847acd94b61521ec5913 |
| Notes | ObjectType-Article-1 SourceType-Scholarly Journals-1 ObjectType-Feature-2 content type line 14 |
| OpenAccessLink | https://www.proquest.com/docview/2386936605?pq-origsite=%requestingapplication%&accountid=15518 |
| PQID | 2386936605 |
| PQPubID | 376296 |
| PageCount | 7 |
| ParticipantIDs | unpaywall_primary_10_12928_telkomnika_v17i6_12710 proquest_journals_2386936605 crossref_primary_10_12928_telkomnika_v17i6_12710 |
| ProviderPackageCode | CITATION AAYXX |
| PublicationCentury | 2000 |
| PublicationDate | 2019-12-01 20191201 |
| PublicationDateYYYYMMDD | 2019-12-01 |
| PublicationDate_xml | – month: 12 year: 2019 text: 2019-12-01 day: 01 |
| PublicationDecade | 2010 |
| PublicationPlace | Yogyakarta |
| PublicationPlace_xml | – name: Yogyakarta |
| PublicationTitle | Telkomnika |
| PublicationYear | 2019 |
| Publisher | Ahmad Dahlan University |
| Publisher_xml | – name: Ahmad Dahlan University |
| SSID | ssj0000702598 |
| Score | 2.1183562 |
| Snippet | Around the transformations [11], extraction of characteristics [12] or any other type of massive matrix operation, object detection and recognition and route... |
| SourceID | unpaywall proquest crossref |
| SourceType | Open Access Repository Aggregation Database Index Database |
| StartPage | 3003 |
| SubjectTerms | Algorithms Buffers Combinatorial analysis Counting Data buses Data processing Design Digital computers Digital imaging Electric power systems Field programmable gate arrays Finite state machines Hardware description languages Image processing Information processing Interpolation Light emitting diodes Moving images Object recognition Personal computers Power management Programmable logic devices Random access memory Route planning Transformations (mathematics) Visualization |
| SummonAdditionalLinks | – databaseName: Unpaywall dbid: UNPAY link: http://utb.summon.serialssolutions.com/2.0.0/link/0/eLvHCXMwpV1NT-MwELXYckB7YBcWRBEgH7gmqR3HqY_VbgvLR-HQSuwpcmxHCm2TirbA7q_fceLSIi4I7vFImed43iie9xA6NWk7prr6kKj2GKWZJ4RhXqyh9lDBNG3beefrPj8fsou76G4lKeQS6C-ktvEAj0o00CpFBIPu1eXNdf_3ZSdwWQ20FZQvpQ4IhUoZxNCrfEGbPAJa3kCbw_5t549tuLgIPWv5VxnNwQkAlCB0d72ooO1gbsajclLkI-k_kjjnfhXudaVa0c-tRTGVf5_keLxWiXrf0P1ynqe-gDLyF_PUV__eyjt-_iW_o23HV3GnfmoHbZhiF31dUzH8gdRgjfyWBZaFxro2useP-cxObdaznrjMcD6BA2yG7VQLVs5RAjuzIFiJe7dnHZxDEDyx5gHPds1V99ceGva6g5_nnvNu8JQ1lgXSziOmYwX5pYRlcYvIUFFAv6UZcBCurKwN4bQVamL_1EqlBUu5ZRNGRYKE-6hRlIU5QFgxRTTEYGkWstjIVDAeGZ1mIoqUVlkTtZY4JdNaoiOxrY2FNllBm1TQJlUSm-hoiWfi0JglQF5gk3Do75qIvGD83pCHH1hzhBrzh4U5BlozT0_chv0PBqz4kQ priority: 102 providerName: Unpaywall |
| Title | Transformation and dynamic visualization of images from computer through an FPGA in a matrix of LED |
| URI | https://www.proquest.com/docview/2386936605 http://journal.uad.ac.id/index.php/TELKOMNIKA/article/download/12710/7094 |
| UnpaywallVersion | publishedVersion |
| Volume | 17 |
| hasFullText | 1 |
| inHoldings | 1 |
| isFullTextHit | |
| isPrint | |
| journalDatabaseRights | – providerCode: PRVAFT databaseName: Open Access Digital Library customDbUrl: eissn: 2302-9293 dateEnd: 99991231 omitProxy: true ssIdentifier: ssj0000702598 issn: 1693-6930 databaseCode: KQ8 dateStart: 20120101 isFulltext: true titleUrlDefault: http://grweb.coalliance.org/oadl/oadl.html providerName: Colorado Alliance of Research Libraries – providerCode: PRVEBS databaseName: EBSCOhost Academic Search Ultimate customDbUrl: https://search.ebscohost.com/login.aspx?authtype=ip,shib&custid=s3936755&profile=ehost&defaultdb=asn eissn: 2302-9293 dateEnd: 99991231 omitProxy: true ssIdentifier: ssj0000702598 issn: 1693-6930 databaseCode: ABDBF dateStart: 20100401 isFulltext: true titleUrlDefault: https://search.ebscohost.com/direct.asp?db=asn providerName: EBSCOhost – providerCode: PRVPQU databaseName: East & South Asia Database customDbUrl: eissn: 2302-9293 dateEnd: 99991231 omitProxy: false ssIdentifier: ssj0000702598 issn: 1693-6930 databaseCode: BVBZV dateStart: 20071201 isFulltext: true titleUrlDefault: https://search.proquest.com/eastsouthasia providerName: ProQuest – providerCode: PRVPQU databaseName: ProQuest Central customDbUrl: http://www.proquest.com/pqcentral?accountid=15518 eissn: 2302-9293 dateEnd: 99991231 omitProxy: true ssIdentifier: ssj0000702598 issn: 1693-6930 databaseCode: BENPR dateStart: 20071201 isFulltext: true titleUrlDefault: https://www.proquest.com/central providerName: ProQuest – providerCode: PRVPQU databaseName: ProQuest Technology Collection customDbUrl: eissn: 2302-9293 dateEnd: 99991231 omitProxy: true ssIdentifier: ssj0000702598 issn: 1693-6930 databaseCode: 8FG dateStart: 20071201 isFulltext: true titleUrlDefault: https://search.proquest.com/technologycollection1 providerName: ProQuest |
| link | http://utb.summon.serialssolutions.com/2.0.0/link/0/eLvHCXMwjV1LT9tAEB5BOJQeqj6oGpqiPfRqiNfrdfaAqqRNoAVMhBJEe7Hs3bVkJbEDCbT9953xA3KqOK1kaUfa2cd83p1vPoDPNukF3JQbiRtHcJ46SlnhBAZjD1fC8B7xnS9CeToVP278my0IGy4MpVU2Z2J5UJtC0x35EYYWqTyJ6PvL8tYh1Sh6XW0kNOJaWsEclyXGtmGHU2WsFuwMhuH46vHWBRc44v2SH4fWHNIBrJO-uOK9o8nw_OzyIvx-1j98cINM4ueAuLWbIesJh764z5fx39_xfL4Rkkav4VWNJVm_mvw3sGXzt_Byo8LgO9CTDWBa5CzODTOVCD17yFbEqKx4mKxIWbbAw2XFiHHCdK32wGohH-zJRuOTPsvQCFtQYf8_1Od8-G0PpqPh5OupU-sqOJpEXxFQS1-YQOOQuSvSoOvGnuY4M10jEB9ITSVnXMm7nnHpFTXWRolEUqS32leu9x5aeZHbD8C00K5BGyJJPRHYOFFC-tYkqfJ9bXTahm7jumhZlc-I6LeDvB2t7XxWLPJsFkelt6PS223oNC6O6v20ip5mvw3uo9ufa3L__yY_wi7CIFUlqXSgtb67t58QaqyTA9jujU4O6lVE7fXg1zW203Dc__kPB8rVfg |
| linkProvider | ProQuest |
| linkToHtml | http://utb.summon.serialssolutions.com/2.0.0/link/0/eLvHCXMwtV1Lb9NAEB6V9lA4IJ4ipcAe4Ggar9fr7KFCgSYk5EGFUqk3Y--uJauJnZL09ef625ix121OiEuvlna8Gs_ufLPebz6AjzbtRNxUC4kbT3CeeUpZ4UUGcw9XwvAO8Z0nUzk4ET9Ow9MtuG24MHStstkTq43alJrOyA8wtUgVSETfX5bnHqlG0d_VRkIjcdIK5rBqMeaIHSN7c4Ul3OpweITf-xPn_d7s28BzKgOeJglUhJcyFCbSXHHuiyxq-0mgOc6zbQRmS6mpAYsveTswPv1TTLRRIpWU96wOlR-g3UewIwKhsPjb-dqbHv-6O-XBBYX1RcXHw9l7pDvoLpnh6zoHs9549HMyHY66ny_9KJf4OCIu72aKvMe9uxfFMrm5SubzjRTYfwZPHXZl3TrYnsOWLV7Ak42Ohi9BzzaAcFmwpDDM1KL37DJfEYOz5n2yMmP5AjezFSOGC9NOXYI54SAcyfrH37ssRyNsQUIC1zRm3Dt6BScP4uHXsF2UhX0DTAvtG7Qh0iwQkU1SJWRoTZqpMNRGZy1oN66Ll3W7jpjKHPJ2vLbzs3JR5GdJXHk7rrzdgv3GxbFbv6v4Ptpa4N-5_X9N7v3b5AfYHcwm43g8nI7ewmOEYKq-ILMP2-s_F_Ydwpx1-t7FEoPfDx2-fwEK7Amw |
| linkToPdf | http://utb.summon.serialssolutions.com/2.0.0/link/0/eLvHCXMw1V1Lc9MwEN4p6Qy0ByivaUoBHeDoJJZlOTowTNokNCQNPaSdDhdjS_KMJ4mdNklL-Gn8Ff5MV360GQ5MLz1w9YzWsvXt7idpHwAfdNj0qMoUiSqLURpZQmhmeQp9DxVM0abJdz4e8qNT9vXcPd-A32UujAmrLG1iZqhVKs0ZeR1dCxcOR_Zdj4qwiJN29_PswjIdpMxNa9lOI4dIX6-ucfs2_9Rr41p_pLTbGR0eWUWHAUua9qdILbnLlCepoNRmkdewA0dSnGNDMfSUXJriKzanDUfZ5j4xkEqwkBufp6UrbAflPoLNJkeKWoHNg7OD72e3JzyoTLi3yHLxcOaW6TlYBJjh65r1UWfQ_3Y87PVbtSvbizk-9kwe77p7vOO8T5bJLFhdB5PJmvvrPoM_5Y_Lo17GteUirMlff9WU_D__7A48LVg5aeVq9Bw2dPICttdqNb4EOVqj-GlCgkQRtUqCaSzJVTw3ual5RitJIxJP0UzPicndIbLom0GKlkg4knRPvrRIjELI1LRI-GnGDDrtV3D6IF_5GipJmuhdIJJJW6EMFkYO83QQCsZdrcJIuK5UMqpCowSGP8sLkfhmA2ew5C_0ZJxOk3gc-BmW_AxLVdgvF9wvLNPcv1vtKti3oLqvyL1_i3wPjxE6_qA37L-BLeSWIo_82YfK4nKp3yJ_W4TvCkUh8OOhEXQDXklOGA |
| linkToUnpaywall | http://utb.summon.serialssolutions.com/2.0.0/link/0/eLvHCXMwpV1NT-MwELXYckB7YBcWRBEgH7gmqR3HqY_VbgvLR-HQSuwpcmxHCm2TirbA7q_fceLSIi4I7vFImed43iie9xA6NWk7prr6kKj2GKWZJ4RhXqyh9lDBNG3beefrPj8fsou76G4lKeQS6C-ktvEAj0o00CpFBIPu1eXNdf_3ZSdwWQ20FZQvpQ4IhUoZxNCrfEGbPAJa3kCbw_5t549tuLgIPWv5VxnNwQkAlCB0d72ooO1gbsajclLkI-k_kjjnfhXudaVa0c-tRTGVf5_keLxWiXrf0P1ynqe-gDLyF_PUV__eyjt-_iW_o23HV3GnfmoHbZhiF31dUzH8gdRgjfyWBZaFxro2useP-cxObdaznrjMcD6BA2yG7VQLVs5RAjuzIFiJe7dnHZxDEDyx5gHPds1V99ceGva6g5_nnvNu8JQ1lgXSziOmYwX5pYRlcYvIUFFAv6UZcBCurKwN4bQVamL_1EqlBUu5ZRNGRYKE-6hRlIU5QFgxRTTEYGkWstjIVDAeGZ1mIoqUVlkTtZY4JdNaoiOxrY2FNllBm1TQJlUSm-hoiWfi0JglQF5gk3Do75qIvGD83pCHH1hzhBrzh4U5BlozT0_chv0PBqz4kQ |
| openUrl | ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info%3Asid%2Fsummon.serialssolutions.com&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.atitle=Transformation+and+dynamic+visualization+of+images+from+computer+through+an+FPGA+in+a+matrix+of+LED&rft.jtitle=Telkomnika&rft.au=G%C3%B3mez%2C+Edwar+Jacinto&rft.au=Santa%2C+Fernando+Mart%C3%ADnez&rft.au=Ariza%2C+Holman+Montiel&rft.date=2019-12-01&rft.pub=Ahmad+Dahlan+University&rft.issn=1693-6930&rft.eissn=2302-9293&rft.volume=17&rft.issue=6&rft.spage=3003&rft.epage=3009&rft_id=info:doi/10.12928%2FTELKOMNIKA.v17i6.12710&rft.externalDBID=HAS_PDF_LINK |
| thumbnail_l | http://covers-cdn.summon.serialssolutions.com/index.aspx?isbn=/lc.gif&issn=1693-6930&client=summon |
| thumbnail_m | http://covers-cdn.summon.serialssolutions.com/index.aspx?isbn=/mc.gif&issn=1693-6930&client=summon |
| thumbnail_s | http://covers-cdn.summon.serialssolutions.com/index.aspx?isbn=/sc.gif&issn=1693-6930&client=summon |